Bauke/tildes-issue-log
Bauke
/
tildes-issue-log
Archived
1
Fork 0

BIG UPDATE:

- Updated to Gulp 4
- Switched from Pug to HTML
- Switched from Sass to Scss
- Rewrote the GitLab downloading so it makes sense now and uses Gulp properly
- Updated README
- Replaced 'Made with Pug' to 'Made with Gulp'
This commit is contained in:
Bauke 2019-01-05 23:44:59 +01:00
parent 86ce2bd2d2
commit fea841e873
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
38 changed files with 9969 additions and 7136 deletions

View File

@ -1,6 +1,7 @@
{ {
"env": { "env": {
"node": true "node": true,
"es6": true
}, },
"parserOptions": { "parserOptions": {
"sourceType": "module" "sourceType": "module"
@ -19,6 +20,10 @@
"semi": [ "semi": [
"error", "error",
"never" "never"
],
"comma-dangle": [
"error",
"always-multiline"
] ]
} }
} }

View File

@ -1,4 +1,4 @@
image: node:latest image: node:10
cache: cache:
key: ${CI_COMMIT_REF_SLUG} key: ${CI_COMMIT_REF_SLUG}
@ -12,7 +12,7 @@ before_script:
lint: lint:
script: script:
- yarn lint:sass - yarn lint
pages: pages:
stage: deploy stage: deploy

View File

@ -9,6 +9,7 @@
* [September](https://til.bauke.xyz/posts/september-2018.html) * [September](https://til.bauke.xyz/posts/september-2018.html)
* [October](https://til.bauke.xyz/posts/october-2018.html) * [October](https://til.bauke.xyz/posts/october-2018.html)
* [November](https://til.bauke.xyz/posts/november-2018.html) * [November](https://til.bauke.xyz/posts/november-2018.html)
* [December](https://til.bauke.xyz/posts/december-2018.html)
## Contributing ## Contributing
@ -30,10 +31,8 @@ You'll need [Node JS](https://nodejs.org/) and [Yarn](https://yarnpkg.com/). You
* To easily develop the website itself you can run `yarn watch` to watch the `src/` folder for changes and automatically lint the sass and build the files. Running `yarn watch` will open your default browser at `localhost:3000`. * To easily develop the website itself you can run `yarn watch` to watch the `src/` folder for changes and automatically lint the sass and build the files. Running `yarn watch` will open your default browser at `localhost:3000`.
* To build the site only once you can do `yarn build`, the files will be built under `public/`, a requirement for GitLab Pages. * To build the site only once you can do `yarn build`, the files will be built under `public/`, a requirement for GitLab Pages.
A new gitignored directory will be created like `data/2018/August` and have 2 folders and 2 [Pug](https://pugjs.org) files. A new gitignored directory will be created called `data/` including all the files to generate the Statistics and the Issue Table files, which will appear in the "out" folder labelled as `MonthYear_table/statistics.html`. To generate them for a specific year and/or month you'll have to go into the Gulp file and change the `wantedYear` and/or the `wantedMonth`.
The folders are for issues both opened or closed during that month `table.pug` will be the issue table and `statistics.pug` will be the statistics. If you're working on the generation process you can run `yarn nodl` to skip the downloading phase, this will only generate `table.html` and `statistics.html`. This way you don't have to wait several seconds for the GitLab API to respond.
If you're working on the generation process you can run `yarn nodl` to skip the downloading phase, this will only generate `table.pug` and `statistics.pug`. This way you don't have to wait several seconds for the GitLab API to respond. If you want to lint your sass (using [Stylelint](https://stylelint.io/)) manually you can run `yarn lint`, in the future when we have JavaScript (if ever) this will also include JS linting however as there's 0 JS ending up on the site at the moment there's no need for it.
If you want to lint your sass (using [Stylelint](https://stylelint.io/)) manually you can run `yarn lint:sass`, in the future when we have JavaScript (if ever) there will also be a `yarn lint:js` task and a general task `yarn lint` however as there's 0 JS at the moment there's no need for JS linting.

View File

@ -1,94 +1,63 @@
// TODO: add comments, I'm lazy :sleeping: // Require dependencies
const const
bsync = require('browser-sync'),
GitLab = require('gitlab/dist/es5').default,
df = require('date-format'), df = require('date-format'),
fs = require('fs'), fs = require('fs-extra'),
klaw = require('klaw-sync'), gitlab = require('gitlab/dist/es5').default,
path = require('path')
const
gulp = require('gulp'), gulp = require('gulp'),
pug = require('gulp-pug'), htmlclean = require('gulp-htmlclean'),
sass = require('gulp-sass'), klaw = require('klaw-sync'),
stylelint = require('gulp-stylelint') log = require('fancy-log'),
merge2 = require('merge2'),
path = require('path'),
scss = require('gulp-sass'),
stylelint = require('gulp-stylelint'),
sync = require('browser-sync')
// Require statistic functions
const { avgTime, freqUsers, labelsAlphabet } = require('./statistics') const { avgTime, freqUsers, labelsAlphabet } = require('./statistics')
const output = path.join(__dirname, 'public') // Define paths that are gonna be used commonly
const paths = {
gulp.task('download', () => { data: {
const year = new Date().getFullYear().toString() issues: {
const month = months[new Date().getMonth()] open: path.join(__dirname, 'data/issues/open/'),
const openedPath = path.join(__dirname, 'data', year, month, 'Opened') closed: path.join(__dirname, 'data/issues/closed/'),
const closedPath = path.join(__dirname, 'data', year, month, 'Closed') out: path.join(__dirname, 'data/issues/out/'),
},
checkPaths() },
extra: path.join(__dirname, 'src/favicons/**'),
const config = require('./config.json') html: {
const api = new GitLab({ token: config.token }) index: path.join(__dirname, 'src/index.html'),
posts: path.join(__dirname, 'src/posts/*.html'),
api.Projects },
.show('tildes/tildes') out: path.join(__dirname, 'public/'),
.then((project) => { scss: path.join(__dirname, 'src/scss/*.scss'),
api.Issues
.all({
projectId: project.id
})
.then((issues) => {
for (const issue of issues) {
if (new Date(issue.created_at).getMonth() === new Date().getMonth()) {
fs.writeFileSync(path.join(openedPath, issue.iid.toString()) + '.json', JSON.stringify(issue, null, 2))
} }
if (new Date(issue.closed_at).getMonth() === new Date().getMonth()) {
fs.writeFileSync(path.join(closedPath, issue.iid.toString()) + '.json', JSON.stringify(issue, null, 2)) // Define options for Node Sass, Stylelint and Browser Sync
const opts = {
scss: {
outputStyle: 'compressed',
},
stylelint: {
reporters: [{
formatter: 'string', console: true,
}],
},
sync: {
server: {
baseDir: paths.out,
},
},
} }
}
})
.then(() => { console.log('Finished downloading, creating table and statistics.') })
.then(createTable)
.then(createStatistics)
})
})
gulp.task('no-download', () => { // The data to download from specified month, months are zero-based zo January would be 0
createTable() // Make sure both of these are **numbers**, if they are strings it won't work properly!
createStatistics() const wantedMonth = new Date().getMonth()
}) // Since we've passed from 2018 into 2019 we also have to start checking for year now
const wantedYear = new Date().getFullYear()
gulp.task('build', ['lint:sass'], () => {
gulp
.src('src/*.pug')
.pipe(pug())
.pipe(gulp.dest(output))
gulp
.src('src/posts/*.pug')
.pipe(pug())
.pipe(gulp.dest(output + '/posts'))
gulp
.src('src/sass/*.sass')
.pipe(sass({ outputStyle: 'compressed' }))
.pipe(gulp.dest(output + '/css'))
gulp
.src('src/favicons/**')
.pipe(gulp.dest(output))
})
gulp.task('watch', () => {
bsync.init({ server: output })
gulp.watch('src/**', ['build']).on('change', bsync.reload)
})
gulp.task('lint:sass', () => {
gulp
.src('src/**/*.sass')
.pipe(stylelint({ reporters: [{formatter: 'string', console: true}] }))
})
// Init the months array, probably a way to do this with Dates but this works too
const months = [ const months = [
'January', 'January',
'February', 'February',
@ -101,20 +70,117 @@ const months = [
'September', 'September',
'October', 'October',
'November', 'November',
'December' 'December',
] ]
function createTable() { // Add the year and month to the open/closed/out path so they're easy to identify
const year = new Date().getFullYear().toString() const openPath = `${paths.data.issues.open}${wantedYear}/${months[wantedMonth]}/` // folder
const month = months[new Date().getMonth()] const closedPath = `${paths.data.issues.closed}${wantedYear}/${months[wantedMonth]}/` // folder
const openedPath = path.join(__dirname, 'data', year, month, 'Opened') const outPath = `${paths.data.issues.out}${months[wantedMonth]}${wantedYear}` // will become table and statistics files
const closedPath = path.join(__dirname, 'data', year, month, 'Closed')
checkPaths() // Make the directories using fs-extra's "mkdir -p" equivalent
// It will make any directory that doesn't yet exist in the path
fs.mkdirpSync(openPath)
fs.mkdirpSync(closedPath)
fs.mkdirpSync(paths.data.issues.out)
let opened = klaw(openedPath) // Create the browser sync server, it only starts when using `gulp watch` however
const server = sync.create()
// Copy over the HTML, using merge2 to use Gulp's async completion and multiple src's
function buildHTML() {
return merge2([
gulp.src(paths.html.index).pipe(htmlclean()).pipe(gulp.dest(paths.out)),
gulp.src(paths.html.posts).pipe(htmlclean()).pipe(gulp.dest(paths.out + 'posts/')),
])
}
// Build the CSS
function buildCSS() {
return gulp
.src(paths.scss)
.pipe(scss(opts.scss))
.pipe(gulp.dest(paths.out + 'css/'))
}
// Build the extra stuff, for now only the favicons
function buildExtra() {
return gulp
.src(paths.extra)
.pipe(gulp.dest(paths.out))
}
// Lint the Scss with Stylelint
function lintSCSS() {
return gulp
.src(paths.scss)
.pipe(stylelint(opts.stylelint))
}
// Start the Browser Sync server and watch individual file types with appropriate build functions
function watch() {
server.init(opts.sync)
gulp.watch([ paths.html.index, paths.html.posts ], gulp.series(buildHTML, reload))
gulp.watch(paths.scss, gulp.series(lintSCSS, buildCSS, reload))
gulp.watch(paths.extra, gulp.series(buildExtra, reload))
}
// To use Gulp's async completion system this has to be done, it's ugly but can't do without it
function reload(callback) {
server.reload()
callback()
}
function download() {
// Create the API with the token
const api = new gitlab({ token: require('./config.json').token })
// Return a new Promise so we can take advantage of Gulp's async completion system
// We'll reject whenever there is an error and resolve when everything is completed
return new Promise((resolve, reject) => {
// The Node GitLab API is a bit weird, first we have to find the project Tildes/Tildes
api.Projects
.show('tildes/tildes')
.catch((error) => reject(new Error('There was an error fetching the project:', error)))
.then((project) => {
log('Found project, downloading issues...')
// Then once we find the project we can use it and its ID to download the issues
api.Issues
.all({ projectId: project.id })
.catch((error) => reject(new Error('There was an error downloading the issues:', error)))
.then((issues) => {
// And then once we've downloaded all the issues we can write them to file appropriately
log(`Downloaded issues, saving opened and closed issues from ${months[wantedMonth]} ${wantedYear} to file...`)
for (const issue of issues) {
const createdDate = new Date(issue.created_at)
if (createdDate.getFullYear() === wantedYear &&
createdDate.getMonth() === wantedMonth) {
fs.writeFileSync(openPath + `${issue.iid}.json`, JSON.stringify(issue, null, 2))
}
const closedDate = new Date(issue.closed_at)
if (issue.closed_at !== null &&
closedDate.getFullYear() === wantedYear &&
closedDate.getMonth() === wantedMonth) {
fs.writeFileSync(closedPath + `${issue.iid}.json`, JSON.stringify(issue, null, 2))
}
}
log('Finished writing to file.')
// When we finish writing to file we can resolve the Promise that was created at the beginning
resolve()
})
})
})
}
function createIssueTable() {
// Using a Promise again for Gulp's async completion
return new Promise((resolve) => {
// Klaw returns all files in a directory recursively so we're getting all opened and closed issue files
let opened = klaw(openPath)
let closed = klaw(closedPath) let closed = klaw(closedPath)
// Then we want to sort all of these issue files in their arrays
opened.sort(function(a, b) { opened.sort(function(a, b) {
const aFile = require(a.path) const aFile = require(a.path)
const bFile = require(b.path) const bFile = require(b.path)
@ -127,35 +193,41 @@ function createTable() {
return (aFile.iid > bFile.iid) ? 1 : ((bFile.iid > aFile.iid) ? -1 : 0) return (aFile.iid > bFile.iid) ? 1 : ((bFile.iid > aFile.iid) ? -1 : 0)
}) })
let table = 'article(id="issue-table")\n' // And then generate the Issue Table HTML, which is kind of a mess to do
table += ' h2 Issue Table\n' let table = '<article id="issue-table">\n'
table += ' <h2>Issue Table</h2>\n'
table += ' h3(id="opened") Opened\n' table += ' <h3 id="opened">Opened</h3>\n'
table += ' table\n' table += ' <table>\n'
table += ' thead\n' table += ' <thead>\n'
table += ' tr\n' table += ' <tr>\n'
table += ' td Issue\n' table += ' <td>Issue</td>\n'
table += ' td Title\n' table += ' <td>Title</td>\n'
table += ' td Author\n' table += ' <td>Author</td>\n'
table += ' td Opened\n' table += ' <td>Opened</td>\n'
table += ' td Closed\n' table += ' <td>Closed</td>\n'
table += ' tbody\n' table += ' </tr>\n'
table += ' </thead>\n'
table += ' <tbody>\n'
for (const file of opened) { for (const file of opened) {
const issue = require(file.path) const issue = require(file.path)
table += ' tr\n' table += ' <tr>\n'
table += ` td: a(href="${issue.web_url}") ${issue.iid}\n` table += ` <td><a href="${issue.web_url}">${issue.iid}</a></td>\n`
let title let title
if (issue.title.length >= 50) { if (issue.title.length >= 50) {
title = issue.title.substring(0, 47) + '...' // We're going to be replacing all instances of <> signs to make sure nobody can add
// <script></script> in their issue title and run JS on the site or mess up the layout or something
// I do check myself before I commit and push anything but I'd rather be completely sure.
title = issue.title.substring(0, 47).replace(/[<>]/g, '') + '...'
} else { } else {
title = issue.title title = issue.title.replace(/[<>]/g, '')
} }
table += ` td ${title}\n` table += ` <td>${title}</td>\n`
table += ` td: a(href="${issue.author.web_url}") ${issue.author.username}\n` table += ` <td><a href="${issue.author.web_url}">${issue.author.username}</a></td>\n`
table += ` td ${df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.created_at))}\n` table += ` <td>${df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.created_at))}</td>\n`
let closedAt let closedAt
if (issue.closed_at === null) { if (issue.closed_at === null) {
@ -164,35 +236,41 @@ function createTable() {
closedAt = df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.closed_at)) closedAt = df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.closed_at))
} }
table += ` td ${closedAt}\n` table += ` <td>${closedAt}</td>\n`
table += ' </tr>\n'
} }
table += '\n h3(id="closed") Closed\n' table += ' </tbody>\n'
table += ' table\n' table += ' </table>\n\n'
table += ' thead\n'
table += ' tr\n' table += ' <h3 id="closed">Closed</h3>\n'
table += ' td Issue\n' table += ' <table>\n'
table += ' td Title\n' table += ' <thead>\n'
table += ' td Author\n' table += ' <tr>\n'
table += ' td Opened\n' table += ' <td>Issue</td>\n'
table += ' td Closed\n' table += ' <td>Title</td>\n'
table += ' tbody\n' table += ' <td>Author</td>\n'
table += ' <td>Opened</td>\n'
table += ' <td>Closed</td>\n'
table += ' </tr>\n'
table += ' <thead>\n'
table += ' <tbody>\n'
for (const file of closed) { for (const file of closed) {
const issue = require(file.path) const issue = require(file.path)
table += ' tr\n' table += ' <tr>\n'
table += ` td: a(href="${issue.web_url}") ${issue.iid}\n` table += ` <td><a href="${issue.web_url}">${issue.iid}</a></td>\n`
let title let title
if (issue.title.length >= 50) { if (issue.title.length >= 50) {
title = issue.title.substring(0, 47) + '...' title = issue.title.substring(0, 47).replace(/[<>]/g, '') + '...'
} else { } else {
title = issue.title title = issue.title.replace(/[<>]/g, '')
} }
table += ` td ${title}\n` table += ` <td>${title}\n`
table += ` td: a(href="${issue.author.web_url}") ${issue.author.username}\n` table += ` <td><a href="${issue.author.web_url}">${issue.author.username}</a>\n`
table += ` td ${df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.created_at))}\n` table += ` <td>${df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.created_at))}</td>\n`
let closedAt let closedAt
if (issue.closed_at === null) { if (issue.closed_at === null) {
@ -201,89 +279,85 @@ function createTable() {
closedAt = df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.closed_at)) closedAt = df.asString('yyyy/MM/dd hh:mm:ss', new Date(issue.closed_at))
} }
table += ` td ${closedAt}\n` table += ` <td>${closedAt}</td>\n`
table += ' </tr>\n'
} }
table = table.replace('<', '') table += ' </tbody>\n'
table = table.replace('>', '') table += ' </table>\n'
fs.writeFileSync(path.join(__dirname, 'data', year, month, 'table.pug'), table, {encoding: 'UTF-8'}) table += '</article>\n'
// And finally when the HTML is done generating we can write it and resolve that Promise we made
fs.writeFileSync(outPath + '_table.html', table, { encoding: 'UTF-8' })
resolve()
})
} }
function createStatistics() { function createStatistics() {
const year = new Date().getFullYear().toString() return new Promise((resolve) => {
const month = months[new Date().getMonth()] // Same process as the Issue Table generation
const openedPath = path.join(__dirname, 'data', year, month, 'Opened') let opened = klaw(openPath)
const closedPath = path.join(__dirname, 'data', year, month, 'Closed')
checkPaths()
let opened = klaw(openedPath)
let closed = klaw(closedPath) let closed = klaw(closedPath)
let statistics = 'article(id="statistics")\n' let statistics = '<article id="statistics">\n'
statistics += ' h2 Statistics\n' statistics += ' <h2>Statistics</h2>\n'
statistics += ` p In the month of ${month} ` statistics += ` <p>In the month of ${months[wantedMonth]} `
statistics += `${opened.length} issues were opened and ` statistics += `${opened.length} issues were opened and `
statistics += `${closed.length} issues were closed.\n` statistics += `${closed.length} issues were closed.</p>\n`
statistics += ` p An average of ${(opened.length / 30).toFixed(2)} issues were opened ` statistics += ` <p>An average of ${(opened.length / 30).toFixed(2)} issues were opened `
statistics += `and ${(closed.length / 30).toFixed(2)} issues were closed each day.\n` statistics += `and ${(closed.length / 30).toFixed(2)} issues were closed each day.</p>\n`
statistics += ` p The average time to close issues was ${avgTime(closed, 'days')} days ` statistics += ` <p>The average time to close issues was ${avgTime(closed, 'days')} days `
statistics += `or ${avgTime(closed, 'hours')} hours.\n` statistics += `or ${avgTime(closed, 'hours')} hours.</p>\n`
const topUsers = freqUsers(opened, 3) const topUsers = freqUsers(opened, 3)
statistics += ' p Top 3 issue creators:\n' statistics += ' <p> Top 3 issue creators:</p>\n'
statistics += ' ol\n' statistics += ' <ol>\n'
for (const user in topUsers) { for (const user in topUsers) {
statistics += ' li\n' statistics += ' <li>\n'
statistics += ` a(href="https://gitlab.com/${user}") ${user}\n` statistics += ` <a href="https://gitlab.com/${user}">${user}</a>`
statistics += ' |\n' statistics += ' with '
statistics += ' | with\n' statistics += `<a href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=${user}">${topUsers[user]} issues created</a>.\n`
statistics += ' |\n' statistics += ' </li>\n'
statistics += ` a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=${user}") ${topUsers[user]} issues created\n`
statistics += ' | .\n'
} }
statistics += ' </ol>\n'
let labels = labelsAlphabet(opened, true) let labels = labelsAlphabet(opened, true)
statistics += ' p Amount of labels assigned to currently open issues:\n' statistics += ' <p>Amount of labels assigned to currently open issues:</p>\n'
statistics += ' ul\n' statistics += ' <ul>\n'
for (const label in labels) { for (const label in labels) {
statistics += ' li\n' statistics += ' <li>\n'
statistics += ` a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=${label.replace(' ', '+')}") ${label}\n` statistics += ` <a href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=${label.replace(' ', '+')}")>${label}</a>:`
statistics += ' | :\n' statistics += `${labels[label]} `
statistics += ` | ${labels[label]} `
if (labels[label] === 1) statistics += 'time.\n' if (labels[label] === 1) statistics += 'time.\n'
else statistics += 'times.\n' else statistics += 'times.\n'
statistics += ' </li>\n'
} }
statistics += ' </ul>\n'
labels = labelsAlphabet(closed, false) labels = labelsAlphabet(closed, false)
statistics += ' p Amount of labels assigned to closed issues:\n' statistics += ' <p>Amount of labels assigned to closed issues:</p>\n'
statistics += ' ul\n' statistics += ' <ul>\n'
for (const label in labels) { for (const label in labels) {
statistics += ' li\n' statistics += ' <li>\n'
statistics += ` a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=${label.replace(' ', '+')}") ${label}\n` statistics += ` <a href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=${label.replace(' ', '+')}")>${label}</a>:`
statistics += ' | :\n' statistics += `${labels[label]} `
statistics += ` | ${labels[label]} `
if (labels[label] === 1) statistics += 'time.\n' if (labels[label] === 1) statistics += 'time.\n'
else statistics += 'times.\n' else statistics += 'times.\n'
statistics += ' </li>\n'
}
statistics += ' </ul>\n'
statistics += '</article>\n'
fs.writeFileSync(outPath + '_statistics.html', statistics, { encoding: 'UTF-8' })
resolve()
})
} }
fs.writeFileSync(path.join(__dirname, 'data', year, month, 'statistics.pug'), statistics, {encoding: 'UTF-8'}) exports.build = gulp.series(lintSCSS, gulp.parallel(buildHTML, buildCSS, buildExtra))
} exports.download = gulp.series(download, gulp.parallel(createIssueTable, createStatistics))
exports.no_download = gulp.parallel(createIssueTable, createStatistics)
// Checking if all the directories exist and creating them if not exports.lint = lintSCSS
// There's probably a better way to do this, like "mkdir -p <path>" exports.watch = watch
// TODO: rework checkPaths()
function checkPaths() {
const year = new Date().getFullYear().toString()
const month = months[new Date().getMonth()]
const openedPath = path.join(__dirname, 'data', year, month, 'Opened')
const closedPath = path.join(__dirname, 'data', year, month, 'Closed')
if (!fs.existsSync(path.join(__dirname, 'data'))) fs.mkdirSync(path.join(__dirname, 'data'))
if (!fs.existsSync(path.join(__dirname, 'data', year))) fs.mkdirSync(path.join(__dirname, 'data', year))
if (!fs.existsSync(path.join(__dirname, 'data', year, month))) fs.mkdirSync(path.join(__dirname, 'data', year, month))
if (!fs.existsSync(openedPath)) fs.mkdirSync(openedPath)
if (!fs.existsSync(closedPath)) fs.mkdirSync(closedPath)
}

View File

@ -7,20 +7,24 @@
"watch": "gulp watch", "watch": "gulp watch",
"build": "gulp build", "build": "gulp build",
"dl": "gulp download", "dl": "gulp download",
"nodl": "gulp no-download", "nodl": "gulp no_download",
"lint:sass": "gulp lint:sass" "lint": "gulp lint"
}, },
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"browser-sync": "^2.24.5", "browser-sync": "^2.24.5",
"date-format": "^1.2.0", "date-format": "^2.0.0",
"eslint": "^5.1.0", "eslint": "^5.1.0",
"gitlab": "^3.5.1", "fancy-log": "^1.3.3",
"gulp": "^3.9.1", "fs-extra": "^7.0.1",
"gitlab": "^4.3.0",
"gulp": "^4.0.0",
"gulp-htmlclean": "^2.7.22",
"gulp-pug": "^4.0.1", "gulp-pug": "^4.0.1",
"gulp-sass": "^4.0.1", "gulp-sass": "^4.0.1",
"gulp-stylelint": "^7.0.0", "gulp-stylelint": "^8.0.0",
"klaw-sync": "^4.0.0", "klaw-sync": "^6.0.0",
"merge2": "^1.2.3",
"stylelint": "^9.3.0", "stylelint": "^9.3.0",
"stylelint-config-recommended": "^2.1.0" "stylelint-config-recommended": "^2.1.0"
} }

98
src/index.html Normal file
View File

@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tildes Issue Log</title>
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/index.css">
<!-- NOTE: favicons are under "src/favicons" but in "public/" for build -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#282a36">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-TileColor" content="#282a36">
<meta name="msapplication-config" content="browserconfig.xml">
<meta name="theme-color" content="#282a36">
</head>
<body>
<div id="wrapper">
<h1>Tildes Issue Log</h1>
<section id="posts">
<h1>Posts</h1>
<article class="post">
<h2>
<a href="posts/december-2018.html">December 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/november-2018.html">November 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/october-2018.html">October 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/september-2018.html">September 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/august-2018.html">August 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/july-2018.html">July 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/june-2018.html">June 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/may-2018.html">May 2018</a>
</h2>
</article>
<article class="post">
<h2>
<a href="posts/template.html">Post Template (for devs/writers)</a>
</h2>
</article>
</section>
<footer id="footer">
<h3>
<a href="index.html">Home</a>
</h3>
<h3>
<a href="#">To Top</a>
</h3>
<h3>
<a href="https://tildes.net">Tildes</a>
</h3>
<h3>Built with
<a href="https://gulpjs.com">Gulp</a>
and
<a href="https://sass-lang.com/">Sass</a>
</h3>
<h3>Colors from
<a href="https://draculatheme.com">Dracula</a>
</h3>
<h3>View the
<a href="https://gitlab.com/Bauke/tildes-issue-log">source</a>
</h3>
</footer>
</div>
</body>
</html>

View File

@ -1,64 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title Tildes Issue Log
link(rel="stylesheet", href="css/common.css")
link(rel="stylesheet", href="css/index.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png")
link(rel="manifest" href="site.webmanifest")
link(rel="mask-icon" href="safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 Tildes Issue Log
section(id="posts")
h1 Posts
article(class="post")
h2: a(href="posts/december-2018.html") December 2018
article(class="post")
h2: a(href="posts/november-2018.html") November 2018
article(class="post")
h2: a(href="posts/october-2018.html") October 2018
article(class="post")
h2: a(href="posts/september-2018.html") September 2018
article(class="post")
h2: a(href="posts/august-2018.html") August 2018
article(class="post")
h2: a(href="posts/july-2018.html") July 2018
article(class="post")
h2: a(href="posts/june-2018.html") June 2018
article(class="post")
h2: a(href="posts/may-2018.html") May 2018
article(class="post")
h2: a(href="posts/template.html") Post Template (for devs/writers)
footer(id="footer")
h3: a(href="index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

1491
src/posts/august-2018.html Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,554 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>December 2018</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/post.css">
<!-- NOTE: favicons are under "src/favicons" but in "public/" for build -->
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
<link rel="manifest" href="../site.webmanifest">
<link rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36">
<link rel="shortcut icon" href="../favicon.ico">
<meta name="msapplication-TileColor" content="#282a36">
<meta name="msapplication-config" content="../browserconfig.xml">
<meta name="theme-color" content="#282a36">
</head>
<body>
<div id="wrapper">
<h1>December 2018</h1>
<section id="post">
<article id="toc">
<h2>Table Of Contents</h2>
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#feedback">Feedback</a>
</li>
<li>
<a href="#highlights">Highlights</a>
<ul>
<li>
<a href="#topic-ownership">Topic Ownership</a>
</li>
<li>
<a href="#shortlinks">Shortlinks</a>
</li>
<li>
<a href="#happy-new-year">Happy New Year</a>
</li>
</ul>
</li>
<li>
<a href="#statistics">Statistics</a>
</li>
<li>
<a href="#notable-official-topics">Notable Official Topics</a>
</li>
<li>
<a href="#issue-table">Issue Table</a>
<ul>
<li>
<a href="#opened">Opened</a>
</li>
<li>
<a href="#closed">Closed</a>
</li>
</ul>
</li>
</ul>
</article>
<article id="about">
<h2>About</h2>
<p>The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made.
Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and
closed in that month, along with some interesting statistics so you can get a look into the development
process and a quick grasp of anything you may have missed.</p>
</article>
<article id="feedback">
<h2>Feedback</h2>
<p>If anything is incorrect or you have anything that you'd like to see changed or added please
<a href="https://gitlab.com/Bauke/tildes-issue-log/issues">open an issue</a>,
<a href="https://tildes.net/user/Bauke/new_message">PM me</a>
or comment on the posted topic on Tildes.</p>
<p>If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like
Tildes, this will remain entirely open-source.</p>
</article>
<article id="highlights">
<h2>Highlights</h2>
<h3 id="topic-ownership">Topic Ownership</h3>
<p>On December 18th, Deimos posted a topic to discuss potential site mechanics of topics and who owns them that
gained a wild variety of responses that's worth checking out if you haven't already:
<a href="https://tild.es/989">click here to read it</a>.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-07-30</p>
</details>
<h3 id="shortlinks">Shortlinks</h3>
<p>Something that has been planned
<a href="https://tild.es/15m">for quite a while</a>
has been added on December 22nd. Shortlinks!</p>
<p>You can now share topics via the shortlink that is available in the sidebar of topics,
<a href="https://i.imgur.com/upYnLhY.png">over here</a>.
The shortlinks are just "https://tild.es/topic ID" where "topic ID" are the 3 characters of a topic's URL. So
<a href="https://tildes.net/~tildes.official/9au">https://tildes.net/~tildes.official/9au</a>
becomes
<a href="https://tild.es/9au">https://tild.es/9au</a>.</p>
<p>More options like linking to specific comments, users and other stuff is planned, don't worry!</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-07-30</p>
</details>
<h3 id="happy-new-year">Happy New Year</h3>
<p>2018 has come to a close and to celebrate, there will be 47 invite codes (courtesy of some friends and
myself) below, so anyone reading that doesn't have an account yet can check out Tildes. Please read through
<a href="https://docs.tildes.net/">the docs</a>
a little so you know for sure what you're getting into. Enjoy! :)</p>
<p>Clicking the link will take you straight to the registration page with the code filled out (I can't check
which ones are and aren't used, so this won't be updated sorry).</p>
<p>Codes from
<a href="https://tildes.net/user/Bauke">Bauke</a>:
<a href="https://tildes.net/register?code=4HSF7-C3KQX-WIEMT">Code 1</a>,
<a href="https://tildes.net/register?code=DM4DT-ISHLB-IA5JN">Code 2</a>,
<a href="https://tildes.net/register?code=TZ15L-QJ2AS-DL7VK">Code 3</a>,
<a href="https://tildes.net/register?code=QQOCR-6JLBS-U1G41">Code 4</a>,
<a href="https://tildes.net/register?code=R0NPL-AOJXL-F0AJ0">Code 5</a>,
<a href="https://tildes.net/register?code=O23Z1-2V222-MWSTH">Code 6</a>,
<a href="https://tildes.net/register?code=GQ1S6-9WMB9-JI98T">Code 7</a>,
<a href="https://tildes.net/register?code=GX1US-FF3TB-9PPUY">Code 8</a>,
<a href="https://tildes.net/register?code=L1FE7-R09CF-SWDNM">Code 9</a>,
<a href="https://tildes.net/register?code=7Z2VM-U0FHL-ZSYQ1">Code 10</a>.</p>
<p>Codes from
<a href="https://tildes.net/user/Deing">Deing</a>:
<a href="https://tildes.net/register?code=YCMY3-Z16XC-V2SQC">Code 11</a>,
<a href="https://tildes.net/register?code=3VM4Y-D0TR4-Q5M7V">Code 12</a>,
<a href="https://tildes.net/register?code=MUA7G-C4B5R-W233N">Code 13</a>,
<a href="https://tildes.net/register?code=S3JLE-DIYQS-UICNF">Code 14</a>,
<a href="https://tildes.net/register?code=4HRQS-4BMPN-4AM08">Code 15</a>.</p>
<p>Codes from
<a href="https://tildes.net/user/clerical_terrors">Clerical Terrors</a>:
<a href="https://tildes.net/register?code=9GXEP-EJAY5-OJ4ZX">Code 16</a>,
<a href="https://tildes.net/register?code=7I9O2-IX1R3-TLX6D">Code 17</a>,
<a href="https://tildes.net/register?code=PPIVV-OAK80-41RMY">Code 18</a>,
<a href="https://tildes.net/register?code=ZR3S7-B0AFN-VOH70">Code 19</a>,
<a href="https://tildes.net/register?code=O065L-DCFKL-QBF76">Code 20</a>,
<a href="https://tildes.net/register?code=LVNJL-E4OPW-UWRQ3">Code 21</a>,
<a href="https://tildes.net/register?code=A0DCI-0N9WU-FCXES">Code 22</a>,
<a href="https://tildes.net/register?code=O6049-WLND5-YSFKK">Code 23</a>,
<a href="https://tildes.net/register?code=8Z0TP-H17ZR-3J35F">Code 24</a>,
<a href="https://tildes.net/register?code=ZCJ1M-0GNEZ-M1C8E">Code 25</a>.</p>
<p>Codes from
<a href="https://tildes.net/user/Cocoa">Cocoa</a>:
<a href="https://tildes.net/register?code=2EV79-MXUU6-PII43">Code 26</a>,
<a href="https://tildes.net/register?code=PDVDB-ZEOXI-AREHR">Code 27</a>,
<a href="https://tildes.net/register?code=RZV27-2SJ7P-F9Y97">Code 28</a>,
<a href="https://tildes.net/register?code=QWTCN-HWH9H-G6NIS">Code 29</a>,
<a href="https://tildes.net/register?code=CR76Y-TY18Y-ID6IQ">Code 30</a>,
<a href="https://tildes.net/register?code=QS7IL-KEW8X-S7BRA">Code 31</a>,
<a href="https://tildes.net/register?code=PV733-60JXZ-74QOU">Code 32</a>,
<a href="https://tildes.net/register?code=MP7EW-PQSC5-2Q56I">Code 33</a>,
<a href="https://tildes.net/register?code=0B3LU-AFTSZ-NK0CW">Code 34</a>,
<a href="https://tildes.net/register?code=JLTR0-GRCOP-B35UG">Code 35</a>,
<a href="https://tildes.net/register?code=JDR7E-687YN-8YXUN">Code 36</a>,
<a href="https://tildes.net/register?code=VTBEK-3YBDZ-RT7QH">Code 37</a>.</p>
<p>Codes from
<a href="https://tildes.net/user/ducks">Ducks</a>:
<a href="https://tildes.net/register?code=PBHLK-OQF5W-CG6LQ">Code 38</a>,
<a href="https://tildes.net/register?code=51FA7-B8IZC-1PQQT">Code 39</a>,
<a href="https://tildes.net/register?code=PR0D1-38YAR-RZ9FN">Code 40</a>,
<a href="https://tildes.net/register?code=QFXXN-RLCEG-A4FAR">Code 41</a>,
<a href="https://tildes.net/register?code=09IH9-IU3B8-9L4YC">Code 42</a>,
<a href="https://tildes.net/register?code=00VHA-ZPR46-4ERID">Code 43</a>,
<a href="https://tildes.net/register?code=O7WES-NE7Q4-N10FI">Code 44</a>,
<a href="https://tildes.net/register?code=ZTWW7-A3F0W-2DQQF">Code 45</a>,
<a href="https://tildes.net/register?code=BOMC3-Y42OG-BWUN2">Code 46</a>,
<a href="https://tildes.net/register?code=9SI4C-KUXIF-L153O">Code 47</a>.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-07-31</p>
</details>
</article>
<article id="statistics">
<h2>Statistics</h2>
<p>In the month of December 14 issues were opened and 6 issues were closed.</p>
<p>An average of 0.47 issues were opened and 0.20 issues were closed each day.</p>
<p>The average time to close issues was 45.36 days or 1088.60 hours.</p>
<p>Top 3 issue creators:</p>
<ol>
<li>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=Deimorz">6 issues created</a>.</li>
<li>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=cfabbro">2 issues created</a>.</li>
<li>
<a href="https://gitlab.com/uselessabstraction">uselessabstraction</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=uselessabstraction">1 issue
created</a>.</li>
</ol>
<p>Amount of labels assigned to currently open issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=bug">bug</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=code">code</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=design">design</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=feature">feature</a>:
3 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=investigate">investigate</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=suggestion">suggestion</a>:
4 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=tweak">tweak</a>:
4 times.</li>
</ul>
<p>Amount of labels assigned to closed issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=bug">bug</a>:
4 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=code">code</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=in+progress">in
progress</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=tweak">tweak</a>:
1 time.</li>
</ul>
</article>
<article id="notable-official-topics">
<h2>Notable Official Topics</h2>
<table>
<thead>
<tr>
<td>Date</td>
<td>Title</td>
<td>URL</td>
</tr>
</thead>
<tbody>
<tr>
<td>2018-12-18</td>
<td>What if we eliminated "ownership" of link topics?</td>
<td>
<a href="https://tild.es/989">Click</a>
</td>
</tr>
<tr>
<td>2018-12-22</td>
<td>Short links for topics and groups are now available via the tild.es domain</td>
<td>
<a href="https://tild.es/9au">Click</a>
</td>
</tr>
</tbody>
</table>
</article>
<article id="issue-table">
<h2>Issue Table</h2>
<h3 id="opened">Opened</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/335">335</a>
</td>
<td>Public / Third Party REST API</td>
<td>
<a href="https://gitlab.com/uselessabstraction">uselessabstraction</a>
</td>
<td>2018/12/01 01:04:31</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/336">336</a>
</td>
<td>Add a link to site-wide tag filter in a group-w...</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/12/05 23:02:53</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/337">337</a>
</td>
<td>Add >> to create quote blocks like ``` does co...</td>
<td>
<a href="https://gitlab.com/tomflint">tomflint</a>
</td>
<td>2018/12/07 01:25:03</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/338">338</a>
</td>
<td>Remove "# hours" from "Post time" on topics old...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/12/07 16:27:22</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/339">339</a>
</td>
<td>Add more default options in "from:" topic sort ...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/12/07 16:30:26</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/340">340</a>
</td>
<td>Email addresses and ftp:// links leave behind b...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/12/07 20:13:01</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/341">341</a>
</td>
<td>Grey line on left of "Edit your comment"</td>
<td>
<a href="https://gitlab.com/anowlcalledjosh">anowlcalledjosh</a>
</td>
<td>2018/12/09 18:40:27</td>
<td>2018/12/14 05:46:11</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/342">342</a>
</td>
<td>Add sorting options to bookmarks list</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/12/10 21:43:21</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/343">343</a>
</td>
<td>Update annotations to take advantage of delayed...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/12/11 23:30:58</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/344">344</a>
</td>
<td>Investigate Grafana Loki for log storage</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/12/13 03:16:36</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/345">345</a>
</td>
<td>False data-breach positive on a password</td>
<td>
<a href="https://gitlab.com/jleclanche">jleclanche</a>
</td>
<td>2018/12/20 20:23:43</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/346">346</a>
</td>
<td>Make "sub-tags" work properly with special tags...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/12/21 02:34:51</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/347">347</a>
</td>
<td>Shortener responds with 422 when no shortener r...</td>
<td>
<a href="https://gitlab.com/haykam">haykam</a>
</td>
<td>2018/12/22 03:07:31</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/348">348</a>
</td>
<td>General accessibility improvements</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/12/29 21:56:07</td>
<td> </td>
</tr>
</tbody>
</table>
<h3 id="closed">Closed</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/243">243</a>
</td>
<td>Strange doubling up of topic summary text on Mi...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/09/01 21:56:52</td>
<td>2018/12/17 22:11:23</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/249">249</a>
</td>
<td>Update Python to 3.7</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/05 20:23:05</td>
<td>2018/12/11 06:25:39</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/320">320</a>
</td>
<td>Incorrect error message when no search results ...</td>
<td>
<a href="https://gitlab.com/anowlcalledjosh">anowlcalledjosh</a>
</td>
<td>2018/11/02 00:26:27</td>
<td>2018/12/16 02:42:20</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/333">333</a>
</td>
<td>Fresh Vagrant Up gives an error.</td>
<td>
<a href="https://gitlab.com/jms301">jms301</a>
</td>
<td>2018/11/25 17:27:45</td>
<td>2018/12/06 22:29:22</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/334">334</a>
</td>
<td>Ampersands aren't included in links</td>
<td>
<a href="https://gitlab.com/anowlcalledjosh">anowlcalledjosh</a>
</td>
<td>2018/11/28 23:13:27</td>
<td>2018/12/07 20:10:06</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/341">341</a>
</td>
<td>Grey line on left of "Edit your comment"</td>
<td>
<a href="https://gitlab.com/anowlcalledjosh">anowlcalledjosh</a>
</td>
<td>2018/12/09 18:40:27</td>
<td>2018/12/14 05:46:11</td>
</tr>
</tbody>
</table>
</article>
</section>
<footer id="footer">
<h3>
<a href="../index.html">Home</a>
</h3>
<h3>
<a href="#">To Top</a>
</h3>
<h3>
<a href="https://tildes.net">Tildes</a>
</h3>
<h3>Built with
<a href="https://gulpjs.com">Gulp</a>
and
<a href="https://sass-lang.com/">Sass</a>
</h3>
<h3>Colors from
<a href="https://draculatheme.com">Dracula</a>
</h3>
<h3>View the
<a href="https://gitlab.com/Bauke/tildes-issue-log">source</a>
</h3>
</footer>
</div>
</body>
</html>

View File

@ -1,548 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title December 2018
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 December 2018
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
ul
li: a(href="#topic-ownership") Topic Ownership
li: a(href="#shortlinks") Shortlinks
li: a(href="#happy-new-year") Happy New Year
li: a(href="#statistics") Statistics
li: a(href="#notable-official-topics") Notable Official Topics
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
h3(id="topic-ownership") Topic Ownership
p On December 18th, Deimos posted a topic to discuss potential site mechanics of topics and who owns them that gained a wild variety of responses that's worth checking out if you haven't already:
|
|
a(href="https://tild.es/989") click here to read it
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-30
h3(id="shortlinks") Shortlinks
p Something that has been planned
|
|
a(href="https://tild.es/15m") for quite a while
|
| has been added on December 22nd. Shortlinks!
p You can now share topics via the shortlink that is available in the sidebar of topics,
|
|
a(href="https://i.imgur.com/upYnLhY.png") over here
| .
| The shortlinks are just "https://tild.es/topic ID" where "topic ID" are the 3 characters of a topic's URL. So
|
a(href="https://tildes.net/~tildes.official/9au") https://tildes.net/~tildes.official/9au
|
| becomes
|
a(href="https://tild.es/9au") https://tild.es/9au
| .
p More options like linking to specific comments, users and other stuff is planned, don't worry!
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-30
h3(id="happy-new-year") Happy New Year
p 2018 has come to a close and to celebrate, there will be 47 invite codes (courtesy of some friends and myself) below, so anyone reading that doesn't have an account yet can check out Tildes. Please read through
|
|
a(href="https://docs.tildes.net/") the docs
|
| a little so you know for sure what you're getting into. Enjoy! :)
p Clicking the link will take you straight to the registration page with the code filled out (I can't check which ones are and aren't used, so this won't be updated sorry).
p Codes from
|
|
a(href="https://tildes.net/user/Bauke") Bauke
| :
|
a(href="https://tildes.net/register?code=4HSF7-C3KQX-WIEMT") Code 1
| ,
|
a(href="https://tildes.net/register?code=DM4DT-ISHLB-IA5JN") Code 2
| ,
|
a(href="https://tildes.net/register?code=TZ15L-QJ2AS-DL7VK") Code 3
| ,
|
a(href="https://tildes.net/register?code=QQOCR-6JLBS-U1G41") Code 4
| ,
|
a(href="https://tildes.net/register?code=R0NPL-AOJXL-F0AJ0") Code 5
| ,
|
a(href="https://tildes.net/register?code=O23Z1-2V222-MWSTH") Code 6
| ,
|
a(href="https://tildes.net/register?code=GQ1S6-9WMB9-JI98T") Code 7
| ,
|
a(href="https://tildes.net/register?code=GX1US-FF3TB-9PPUY") Code 8
| ,
|
a(href="https://tildes.net/register?code=L1FE7-R09CF-SWDNM") Code 9
| ,
|
a(href="https://tildes.net/register?code=7Z2VM-U0FHL-ZSYQ1") Code 10
| .
p Codes from
|
|
a(href="https://tildes.net/user/Deing") Deing
| :
|
a(href="https://tildes.net/register?code=YCMY3-Z16XC-V2SQC") Code 11
| ,
|
a(href="https://tildes.net/register?code=3VM4Y-D0TR4-Q5M7V") Code 12
| ,
|
a(href="https://tildes.net/register?code=MUA7G-C4B5R-W233N") Code 13
| ,
|
a(href="https://tildes.net/register?code=S3JLE-DIYQS-UICNF") Code 14
| ,
|
a(href="https://tildes.net/register?code=4HRQS-4BMPN-4AM08") Code 15
| .
p Codes from
|
|
a(href="https://tildes.net/user/clerical_terrors") Clerical Terrors
| :
|
a(href="https://tildes.net/register?code=9GXEP-EJAY5-OJ4ZX") Code 16
| ,
|
a(href="https://tildes.net/register?code=7I9O2-IX1R3-TLX6D") Code 17
| ,
|
a(href="https://tildes.net/register?code=PPIVV-OAK80-41RMY") Code 18
| ,
|
a(href="https://tildes.net/register?code=ZR3S7-B0AFN-VOH70") Code 19
| ,
|
a(href="https://tildes.net/register?code=O065L-DCFKL-QBF76") Code 20
| ,
|
a(href="https://tildes.net/register?code=LVNJL-E4OPW-UWRQ3") Code 21
| ,
|
a(href="https://tildes.net/register?code=A0DCI-0N9WU-FCXES") Code 22
| ,
|
a(href="https://tildes.net/register?code=O6049-WLND5-YSFKK") Code 23
| ,
|
a(href="https://tildes.net/register?code=8Z0TP-H17ZR-3J35F") Code 24
| ,
|
a(href="https://tildes.net/register?code=ZCJ1M-0GNEZ-M1C8E") Code 25
| .
p Codes from
|
|
a(href="https://tildes.net/user/Cocoa") Cocoa
| :
|
a(href="https://tildes.net/register?code=2EV79-MXUU6-PII43") Code 26
| ,
|
a(href="https://tildes.net/register?code=PDVDB-ZEOXI-AREHR") Code 27
| ,
|
a(href="https://tildes.net/register?code=RZV27-2SJ7P-F9Y97") Code 28
| ,
|
a(href="https://tildes.net/register?code=QWTCN-HWH9H-G6NIS") Code 29
| ,
|
a(href="https://tildes.net/register?code=CR76Y-TY18Y-ID6IQ") Code 30
| ,
|
a(href="https://tildes.net/register?code=QS7IL-KEW8X-S7BRA") Code 31
| ,
|
a(href="https://tildes.net/register?code=PV733-60JXZ-74QOU") Code 32
| ,
|
a(href="https://tildes.net/register?code=MP7EW-PQSC5-2Q56I") Code 33
| ,
|
a(href="https://tildes.net/register?code=0B3LU-AFTSZ-NK0CW") Code 34
| ,
|
a(href="https://tildes.net/register?code=JLTR0-GRCOP-B35UG") Code 35
| ,
|
a(href="https://tildes.net/register?code=JDR7E-687YN-8YXUN") Code 36
| ,
|
a(href="https://tildes.net/register?code=VTBEK-3YBDZ-RT7QH") Code 37
| .
p Codes from
|
|
a(href="https://tildes.net/user/ducks") Ducks
| :
|
a(href="https://tildes.net/register?code=PBHLK-OQF5W-CG6LQ") Code 38
| ,
|
a(href="https://tildes.net/register?code=51FA7-B8IZC-1PQQT") Code 39
| ,
|
a(href="https://tildes.net/register?code=PR0D1-38YAR-RZ9FN") Code 40
| ,
|
a(href="https://tildes.net/register?code=QFXXN-RLCEG-A4FAR") Code 41
| ,
|
a(href="https://tildes.net/register?code=09IH9-IU3B8-9L4YC") Code 42
| ,
|
a(href="https://tildes.net/register?code=00VHA-ZPR46-4ERID") Code 43
| ,
|
a(href="https://tildes.net/register?code=O7WES-NE7Q4-N10FI") Code 44
| ,
|
a(href="https://tildes.net/register?code=ZTWW7-A3F0W-2DQQF") Code 45
| ,
|
a(href="https://tildes.net/register?code=BOMC3-Y42OG-BWUN2") Code 46
| ,
|
a(href="https://tildes.net/register?code=9SI4C-KUXIF-L153O") Code 47
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-31
article(id="statistics")
h2 Statistics
p In the month of December 14 issues were opened and 6 issues were closed.
p An average of 0.47 issues were opened and 0.20 issues were closed each day.
p The average time to close issues was 45.36 days or 1088.60 hours.
p Top 3 issue creators:
ol
li
a(href="https://gitlab.com/Deimorz") Deimorz
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Deimorz") 6 issues created
| .
li
a(href="https://gitlab.com/cfabbro") cfabbro
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=cfabbro") 2 issues created
| .
li
a(href="https://gitlab.com/uselessabstraction") uselessabstraction
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=uselessabstraction") 1 issue created
| .
p Amount of labels assigned to currently open issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=bug") bug
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=code") code
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=design") design
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=feature") feature
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=investigate") investigate
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=suggestion") suggestion
| :
| 4 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=tweak") tweak
| :
| 4 times.
p Amount of labels assigned to closed issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=bug") bug
| :
| 4 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=code") code
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=in+progress") in progress
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=tweak") tweak
| :
| 1 time.
article(id="notable-official-topics")
h2 Notable Official Topics
table
thead
tr
td Date
td Title
td URL
tbody
tr
td 2018-12-18
td What if we eliminated "ownership" of link topics?
td: a(href="https://tild.es/989") Click
tr
td 2018-12-22
td Short links for topics and groups are now available via the tild.es domain
td: a(href="https://tild.es/9au") Click
article(id="issue-table")
h2 Issue Table
h3(id="opened") Opened
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/335") 335
td Public / Third Party REST API
td: a(href="https://gitlab.com/uselessabstraction") uselessabstraction
td 2018/12/01 01:04:31
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/336") 336
td Add a link to site-wide tag filter in a group-w...
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/12/05 23:02:53
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/337") 337
td Add >> to create quote blocks like ``` does co...
td: a(href="https://gitlab.com/tomflint") tomflint
td 2018/12/07 01:25:03
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/338") 338
td Remove "# hours" from "Post time" on topics old...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/12/07 16:27:22
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/339") 339
td Add more default options in "from:" topic sort ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/12/07 16:30:26
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/340") 340
td Email addresses and ftp:// links leave behind b...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/12/07 20:13:01
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/341") 341
td Grey line on left of "Edit your comment"
td: a(href="https://gitlab.com/anowlcalledjosh") anowlcalledjosh
td 2018/12/09 18:40:27
td 2018/12/14 05:46:11
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/342") 342
td Add sorting options to bookmarks list
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/12/10 21:43:21
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/343") 343
td Update annotations to take advantage of delayed...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/12/11 23:30:58
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/344") 344
td Investigate Grafana Loki for log storage
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/12/13 03:16:36
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/345") 345
td False data-breach positive on a password
td: a(href="https://gitlab.com/jleclanche") jleclanche
td 2018/12/20 20:23:43
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/346") 346
td Make "sub-tags" work properly with special tags...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/12/21 02:34:51
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/347") 347
td Shortener responds with 422 when no shortener r...
td: a(href="https://gitlab.com/haykam") haykam
td 2018/12/22 03:07:31
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/348") 348
td General accessibility improvements
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/12/29 21:56:07
td
h3(id="closed") Closed
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/243") 243
td Strange doubling up of topic summary text on Mi...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/09/01 21:56:52
td 2018/12/17 22:11:23
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/249") 249
td Update Python to 3.7
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/05 20:23:05
td 2018/12/11 06:25:39
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/320") 320
td Incorrect error message when no search results ...
td: a(href="https://gitlab.com/anowlcalledjosh") anowlcalledjosh
td 2018/11/02 00:26:27
td 2018/12/16 02:42:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/333") 333
td Fresh Vagrant Up gives an error.
td: a(href="https://gitlab.com/jms301") jms301
td 2018/11/25 17:27:45
td 2018/12/06 22:29:22
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/334") 334
td Ampersands aren't included in links
td: a(href="https://gitlab.com/anowlcalledjosh") anowlcalledjosh
td 2018/11/28 23:13:27
td 2018/12/07 20:10:06
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/341") 341
td Grey line on left of "Edit your comment"
td: a(href="https://gitlab.com/anowlcalledjosh") anowlcalledjosh
td 2018/12/09 18:40:27
td 2018/12/14 05:46:11
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

1088
src/posts/july-2018.html Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,751 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title July 2018
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 July 2018
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
ul
li: a(href="#open-source") Open Source
li: a(href="#link-new-tabs") Links In New Tabs
li: a(href="#new-groups") New Groups
li: a(href="#not-so-daily-discussions") Not So Daily...
li: a(href="#statistics") Statistics
li: a(href="#daily-discussions") Daily Discussions
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
h3(id="open-source") Open Source
p Arguably the most notable highlight of July was the open-sourcing of the code. You can now find the source code in
|
|
a(href="https://gitlab.com/tildes/tildes") the GitLab repository
|
| and contribute, keep up with the development or create your own version of Tildes entirely. The project is licensed under the
|
a(href="https://gitlab.com/tildes/tildes/blob/master/LICENSE.md") GNU AGPLv3
|
| license, you can find a good summary on
|
a(href="https://choosealicense.com/licenses/agpl-3.0/") GitHub's choosealicense.com
| .
p If you're interested in contributing or just messing around, 2 new documentation pages were added for developing, namely:
|
|
a(href="https://docs.tildes.net/development-setup") Development Setup
|
| and
|
a(href="https://docs.tildes.net/development") Development
| .
| These will get you up and running in no time, although the Vagrant setup process takes quite a few minutes.
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/3i4") here
|
| and
|
a(href="https://blog.tildes.net/open-source") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-19
h3(id="link-new-tabs") Links In New Tabs
p On July 21st the first feature contribution was merged, developed by
|
|
a(href="https://gitlab.com/ivanfon") Ivan Fonseca
|
| better known as
|
a(href="https://tildes.net/user/what") @what
|
| on Tildes. Allowing you to open external and/or internal links in new tabs. You can find the toggles inside
|
a(href="https://tildes.net/settings") your settings
| ,
| above the "Change your password" section.
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/3oi") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-25
h3(id="new-groups") New Groups
p July 23rd saw the introduction of 4 new groups, listed below, following the
|
|
a(href="https://tildes.net/~tildes.official/342") group requests topic
|
| in the beginning of July.
ul
li: a(href="https://tildes.net/~anime") ~anime
li: a(href="https://tildes.net/~enviro") ~enviro
li: a(href="https://tildes.net/~humanities") ~humanities
li: a(href="https://tildes.net/~life") ~life
p Summaries of each group are available in their respective sidebars and in the announcement topic.
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/3qv") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-25
h3(id="not-so-daily-discussions") Not So Daily Discussions
p On the 26th Deimos posted a topic in
|
|
a(href="https://tildes.net/~tildes.official") ~tildes.official
|
| titled
|
a(href="https://tildes.net/~tildes.official/3x9") Not-so-daily Tildes discussion
| .
| Outlining what the future of the Daily Discussions will hold. To sum it up, daily discussions will now appear on a more "on-demand" basis. Initially the daily discussions were to boost the site's activity however it's not really needed anymore. Along with the current backlog of plans and previous discussions that need attention first.
p Also noted is that there will be a new post each Monday including the general plans for the week, as well as a general feedback/questions/suggestions topic every couple of weeks.
p I highly recommend reading the
|
|
a(href="https://tildes.net/~tildes.official/3x9") original topic
| , if you haven't already.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-31
article(id="statistics")
h2 Statistics
p In the month of July 31 issues were opened and 29 issues were closed.
p An average of 1.03 issues were opened and 0.97 issues were closed each day.
p The average time to close issues was 30.69 days or 736.59 hours.
p Top 3 issue creators:
ol
li
a(href="https://gitlab.com/Deimorz") Deimorz
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Deimorz") 10 issues created
| .
li
a(href="https://gitlab.com/Bauke") Bauke
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Bauke") 5 issues created
| .
li
a(href="https://gitlab.com/cfabbro") cfabbro
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=cfabbro") 3 issues created
| .
p Amount of labels assigned to currently open issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=bug") bug
| :
| 6 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=code") code
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=design") design
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=feature") feature
| :
| 5 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=high+priority") high priority
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=in+progress") in progress
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=investigate") investigate
| :
| 6 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=suggestion") suggestion
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=tweak") tweak
| :
| 1 time.
p Amount of labels assigned to closed issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=bug") bug
| :
| 10 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=design") design
| :
| 7 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=feature") feature
| :
| 6 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=high+priority") high priority
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=in+progress") in progress
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=investigate") investigate
| :
| 4 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=tweak") tweak
| :
| 5 times.
article(id="daily-discussions")
h2 Daily Discussions
table
thead
tr
td Date
td Title
td URL
tbody
tr
td 2018-07-03
td How can we help people "acclimate" in a friendlier way?
td: a(href="https://tildes.net/~tildes.official/31s") Click
tr
td 2018-07-04
td How do we make groups feel more like "separate spaces"?
td: a(href="https://tildes.net/~tildes.official/32z") Click
tr
td 2018-07-05
td Proposals for "trial groups", round 1.
td: a(href="https://tildes.net/~tildes.official/342") Click
tr
td 2018-07-06
td General questions/feedback.
td: a(href="https://tildes.net/~tildes.official/351") Click
tr
td 2018-07-09
td More filtering options?
td: a(href="https://tildes.net/~tildes.official/37t") Click
tr
td 2018-07-10
td Figuring out some early details of the group hierarchy.
td: a(href="https://tildes.net/~tildes.official/398") Click
tr
td 2018-07-12
td Please help find omissions from the issue tracker.
td: a(href="https://tildes.net/~tildes.official/3b4") Click
tr
td 2018-07-13
td Thoughts about the site's activity level.
td: a(href="https://tildes.net/~tildes.official/3c7") Click
tr
td 2018-07-16
td How can we maintain quality without drifting too far into "gatekeeping"?
td: a(href="https://tildes.net/~tildes.official/3gj") Click
tr
td 2018-07-17
td Approaches to self-promotion.
td: a(href="https://tildes.net/~tildes.official/3i5") Click
tr
td 2018-07-19
td More details about handling removed posts.
td: a(href="https://tildes.net/~tildes.official/3lf") Click
tr
td 2018-07-20
td General questions/feedback.
td: a(href="https://tildes.net/~tildes.official/3n8") Click
tr
td 2018-07-23
td General plans for the week.
td: a(href="https://tildes.net/~tildes.official/3qz") Click
tr
td 2018-07-24
td Just... try to relax a bit.
td: a(href="https://tildes.net/~tildes.official/3t5") Click
article(id="issue-table")
h2 Issue Table
h3(id="opened") Opened
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/150") 150
td Consider supporting the "click to expand" deta...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/07/08 02:15:55
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/151") 151
td Topic listing is mis-styled on /?after= page
td: a(href="https://gitlab.com/teaearlgraycold") teaearlgraycold
td 2018/07/10 03:00:30
td 2018/07/10 20:24:14
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/152") 152
td Broken list styling with pagination
td: a(href="https://gitlab.com/TauZero1") TauZero1
td 2018/07/10 03:04:02
td 2018/07/10 08:37:51
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/153") 153
td Add preference to change default comment sortin...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/10 09:23:19
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/154") 154
td Add pagination to users viewing their own profile
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/07/12 16:44:20
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/155") 155
td Confirmations for leaving page with post/messag...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/12 22:09:58
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/156") 156
td Add styling for "target" comment when linked to...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/13 02:20:28
td 2018/07/20 00:47:40
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/157") 157
td Markdown - prevention of accidental numbered li...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/13 06:03:06
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/158") 158
td When I create a new topic and I use Control + E...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/07/17 18:31:58
td 2018/07/19 23:15:51
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/159") 159
td Clarify what the inbound contributions are lice...
td: a(href="https://gitlab.com/hook") hook
td 2018/07/18 09:42:20
td 2018/07/23 01:22:24
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/160") 160
td Weird behaviour with Vim Vixen plug-in
td: a(href="https://gitlab.com/Wanda-Seldon") Wanda-Seldon
td 2018/07/18 11:16:20
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/161") 161
td Include licensing and copyright info in source ...
td: a(href="https://gitlab.com/hook") hook
td 2018/07/18 12:22:35
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/162") 162
td Editing tags without making changes and pressin...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/07/19 20:47:11
td 2018/07/20 02:58:45
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/163") 163
td Invite code display order changes on re-load
td: a(href="https://gitlab.com/jms301") jms301
td 2018/07/20 13:51:59
td 2018/07/25 04:04:50
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/164") 164
td Posting a reply on a topic that's been deleted ...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/07/20 18:37:20
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/165") 165
td It's too easy to overwrite your previous topic ...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/20 23:37:24
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/166") 166
td Replace site logo (either entirely or just with...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/21 01:02:05
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/167") 167
td Add pinned topics
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/07/21 02:06:44
td 2018/07/23 01:12:31
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/168") 168
td Make theme setting internal and not session
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/07/22 14:18:29
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/169") 169
td Potential memory leak when using commonmark-gfm...
td: a(href="https://gitlab.com/IdiocyInAction") IdiocyInAction
td 2018/07/22 17:49:24
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/170") 170
td Add ability to open links in comments / text to...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/23 19:35:55
td 2018/07/31 01:29:22
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/171") 171
td Fix/re-enable scraper for link topic favicons
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/23 23:06:49
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/172") 172
td Tildes tries to fix html tags where it shouldn't
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/07/24 08:37:49
td 2018/07/24 09:24:22
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/173") 173
td Mobile Safari displays underscores in place of ...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/25 03:24:24
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/174") 174
td Move the `post-buttons` (edit, tags, delete) to...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/07/27 10:42:40
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/175") 175
td Tildes display in mobile version on QuteBrowser
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/07/28 13:33:19
td 2018/07/28 19:15:05
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/176") 176
td Add style to error pages
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/07/30 15:10:02
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/177") 177
td Switch to Python-based Markdown implementation
td: a(href="https://gitlab.com/ivanfon") ivanfon
td 2018/07/30 18:01:07
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/178") 178
td Change the web app manifest display mode to `mi...
td: a(href="https://gitlab.com/nektro") nektro
td 2018/07/31 02:26:34
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/179") 179
td Add support for browser notifications
td: a(href="https://gitlab.com/nektro") nektro
td 2018/07/31 07:04:20
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/180") 180
td Implement "Black" code-formatter
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/31 10:38:41
td
h3(id="closed") Closed
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/10") 10
td Add a maximum length to markdown fields (text t...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/04 07:38:16
td 2018/07/13 07:07:09
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/20") 20
td The "Sidebar" link on mobile should highlight i...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/11 02:14:32
td 2018/07/20 08:57:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/22") 22
td Implement PWA manifest
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 03:38:44
td 2018/07/13 07:26:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/34") 34
td Create option to open external links in new tabs
td: a(href="https://gitlab.com/chris109") chris109
td 2018/05/22 02:06:18
td 2018/07/22 02:17:38
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/40") 40
td add gitlab link to footer
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/22 22:40:32
td 2018/07/20 19:09:58
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/42") 42
td ability to revisit past "mark as read" notifica...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/22 22:47:24
td 2018/07/21 23:13:35
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/50") 50
td make it easier to distinguish between voted and...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 01:57:27
td 2018/07/20 00:48:13
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/63") 63
td small visual bug in title length error message
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 06:49:07
td 2018/07/25 03:44:37
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/65") 65
td leaving unclosed <a makes entire comment after...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 07:26:48
td 2018/07/13 07:31:07
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/66") 66
td trying to delete comment that isn't yours resul...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 07:28:22
td 2018/07/29 21:33:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/75") 75
td add warning when navigating away from the page ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 18:18:07
td 2018/07/08 22:45:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/76") 76
td Website font is not standardized across platforms
td: a(href="https://gitlab.com/ko.jak") ko.jak
td 2018/05/26 19:46:00
td 2018/07/21 00:59:02
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/120") 120
td Small visual bug when submitting invalid URL
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/10 04:45:05
td 2018/07/25 03:40:47
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/138") 138
td Remove margin-right from last item in tab-listi...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/16 19:37:50
td 2018/07/20 00:48:31
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/143") 143
td iOS - clicking a tag in a group page results in...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/23 22:35:14
td 2018/07/08 22:23:45
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/146") 146
td Change theme application mechanic
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/26 22:46:46
td 2018/07/31 02:49:41
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/147") 147
td A bullet is displayed to the left of each post'...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/06/28 16:41:39
td 2018/07/08 22:29:12
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/149") 149
td Filter tags button too big?
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/29 19:46:57
td 2018/07/19 02:42:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/151") 151
td Topic listing is mis-styled on /?after= page
td: a(href="https://gitlab.com/teaearlgraycold") teaearlgraycold
td 2018/07/10 03:00:30
td 2018/07/10 20:24:14
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/152") 152
td Broken list styling with pagination
td: a(href="https://gitlab.com/TauZero1") TauZero1
td 2018/07/10 03:04:02
td 2018/07/10 08:37:51
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/156") 156
td Add styling for "target" comment when linked to...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/13 02:20:28
td 2018/07/20 00:47:40
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/158") 158
td When I create a new topic and I use Control + E...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/07/17 18:31:58
td 2018/07/19 23:15:51
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/159") 159
td Clarify what the inbound contributions are lice...
td: a(href="https://gitlab.com/hook") hook
td 2018/07/18 09:42:20
td 2018/07/23 01:22:24
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/162") 162
td Editing tags without making changes and pressin...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/07/19 20:47:11
td 2018/07/20 02:58:45
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/163") 163
td Invite code display order changes on re-load
td: a(href="https://gitlab.com/jms301") jms301
td 2018/07/20 13:51:59
td 2018/07/25 04:04:50
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/167") 167
td Add pinned topics
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/07/21 02:06:44
td 2018/07/23 01:12:31
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/170") 170
td Add ability to open links in comments / text to...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/23 19:35:55
td 2018/07/31 01:29:22
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/172") 172
td Tildes tries to fix html tags where it shouldn't
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/07/24 08:37:49
td 2018/07/24 09:24:22
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/175") 175
td Tildes display in mobile version on QuteBrowser
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/07/28 13:33:19
td 2018/07/28 19:15:05
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

1298
src/posts/june-2018.html Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,876 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title June 2018
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 June 2018
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
ul
li: a(href="#new-groups") New Groups
li: a(href="#default-sorting") Default Sorting
li: a(href="#mark-notifications-as-read") Mark Notifications...
li: a(href="#tags") Tags
li: a(href="#topic-log") Topic Log
li: a(href="#statistics") Statistics
li: a(href="#daily-discussions") Daily Discussions
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
h3(id="new-groups") New Groups
p The first change to Tildes in June was the addition of 5 new groups:
ul
li: a(href="https://tildes.net/~books") ~books
li: a(href="https://tildes.net/~food") ~food
li: a(href="https://tildes.net/~hobbies") ~hobbies
li: a(href="https://tildes.net/~lgbt") ~lgbt
li
a(href="https://tildes.net/~lifestyle"): del ~lifestyle
| ,
| now renamed to
|
a(href="https://tildes.net/~health") ~health
p And also the creation of the first sub-group:
|
|
a(href="https://tildes.net/~tildes.official") ~tildes.official
| ,
| which now features any official announcements as well as the
|
a(href="https://tildes.net/?tag=daily_discussion") Daily Discussions
| .
|
| This sub-group also sparked the ability for only admins to create topics.
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/1e1") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-06-24
h3(id="default-sorting") Default Sorting
p The default sort order has been changed from "Activity, All Time" to "Activity, 24 Hours". You can also set your own default sort order which will apply to your general topic listing of groups you're subscribed to and the topic listing of any group you visit.
p To change your default sort order you can select any order you'd like to save and click on the "Set as default" button.
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/1sn") here
|
| and
|
a(href="https://tildes.net/~tildes.official/1vx") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-06-24
h3(id="mark-notifications-as-read") Mark Notifications As Read
p A new setting was added to
|
a(href="https://tildes.net/settings") the settings page
|
| that will allow you to automatically mark all your notifications as read once you visit the notifications pages. It's off by default, so check it out if you haven't already. In case you accidentally mark any of your notifications as read, you can always find all of them
|
a(href="https://tildes.net/notifications") here
| .
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/1z4") here
|.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-06-24
h3(id="tags") Tags
p A bunch of features involving tags have been including filtering to show or hide posts with some tags, a
|
|
a(href="https://tildes.net/~tildes.official/2ab") discussion on standardization and guidelines
| .
p You can access your filter to hide by clicking the "Edit filtered tags" in the sidebar or by navigating to
|
|
a(href="https://tildes.net/settings/filters") your settings
| .
p To filter out topics to only show with specific tags you can click on any tag from a topic or append "?tag=tag" to the URL. Like this: "https://tildes.net/~tech?tag=security", it'll only show you topics tagged with security in the
|
|
a(href="https://tildes.net/~tech") ~tech
|
| group.
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/28n") here
|
| and
|
a(href="https://tildes.net/~tildes.official/2a9") here
|.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-06-24
h3(id="topic-log") Topic Log
p June 18th saw the introduction of the topic log. A log of changes made to a topic, located in the sidebar. Currently the only things logged are if a topic is (un)locked, if someone has changed the tags and/or
|
|
a(href="https://tildes.net/~tildes.official/2p6") edited the title
| .
p Read more about it
|
|
a(href="https://tildes.net/~tildes.official/2f1") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-06-24
article(id="statistics")
h2 Statistics
p In the month of June 51 issues were opened and 19 issues were closed.
p An average of 1.70 issues were opened and 0.63 issues were closed each day.
p The average time to close issues was 8.56 days or 205.34 hours.
p Top 3 issue creators:
ol
li
a(href="https://gitlab.com/cfabbro") cfabbro
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=cfabbro") 12 issues created
| .
li
a(href="https://gitlab.com/Deimorz") Deimorz
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Deimorz") 9 issues created
| .
li
a(href="https://gitlab.com/Bauke") Bauke
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Bauke") 5 issues created
| .
p Amount of labels assigned to currently open issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=bug") bug
| :
| 11 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=code") code
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=design") design
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=feature") feature
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=high+priority") high priority
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=investigate") investigate
| :
| 8 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=suggestion") suggestion
| :
| 12 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=tweak") tweak
| :
| 5 times.
p Amount of labels assigned to closed issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=bug") bug
| :
| 4 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=code") code
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=design") design
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=feature") feature
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=high+priority") high priority
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=in+progress") in progress
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=suggestion") suggestion
| :
| 5 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=tweak") tweak
| :
| 5 times.
article(id="daily-discussions")
h2 Daily Discussions
//- Table format should be like this:
table
thead
tr
td Date
td Title
td URL
tbody
tr
td 2018-06-01
td Is "activity" sort still holding up as the default?
td: a(href="https://tildes.net/~tildes.official/1au") Click
tr
td 2018-06-02
td New groups added, please subscribe to them if you're interested.
td: a(href="https://tildes.net/~tildes.official/1e1") Click
tr
td 2018-06-03
td Should we allow groups to have customized appearances?
td: a(href="https://tildes.net/~tildes.official/1hw") Click
tr
td 2018-06-04
td What missing/broken things are the most "shocking"?
td: a(href="https://tildes.net/~tildes.official/1l3") Click
tr
td 2018-06-05
td Quality concerns.
td: a(href="https://tildes.net/~tildes.official/1oz") Click
tr
td 2018-06-06
td Let's talk more about filtering.
td: a(href="https://tildes.net/~tildes.official/1t8") Click
tr
td 2018-06-07
td Banning for bad-faith/trolling behavior.
td: a(href="https://tildes.net/~tildes.official/1wa") Click
tr
td 2018-06-08
td Future daily Tildes discussions.
td: a(href="https://tildes.net/~tildes.official/1yx") Click
tr
td 2018-06-09
td Should inviter/invitee info be public?
td: a(href="https://tildes.net/~tildes.official/1zz") Click
tr
td 2018-06-10
td Let's start gathering some thoughts for commenting guidelines.
td: a(href="https://tildes.net/~tildes.official/22k") Click
tr
td 2018-06-11
td Finding a balance between discussions and quality links.
td: a(href="https://tildes.net/~tildes.official/247") Click
tr
td 2018-06-12
td Thoughts on recruiting.
td: a(href="https://tildes.net/~tildes.official/26f") Click
tr
td 2018-06-13
td General feedback/questions.
td: a(href="https://tildes.net/~tildes.official/28f") Click
tr
td 2018-06-14
td Topic tag standardization/guidelines.
td: a(href="https://tildes.net/~tildes.official/2ab") Click
tr
td 2018-06-15
td Starting some moderation.
td: a(href="https://tildes.net/~tildes.official/2c4") Click
tr
td 2018-06-16
td Haunted by data.
td: a(href="https://tildes.net/~tildes.official/2d4") Click
tr
td 2018-06-18
td The importance of content.
td: a(href="https://tildes.net/~tildes.official/2fx") Click
tr
td 2018-06-19
td Metafilter.
td: a(href="https://tildes.net/~tildes.official/2ht") Click
tr
td 2018-06-20
td "New topic" page and process updated.
td: a(href="https://tildes.net/~tildes.official/2kh") Click
tr
td 2018-06-21
td "Trial" groups?
td: a(href="https://tildes.net/~tildes.official/2mm") Click
tr
td 2018-06-22
td Nothing in particular.
td: a(href="https://tildes.net/~tildes.official/2o3") Click
tr
td 2018-06-23
td Title editing.
td: a(href="https://tildes.net/~tildes.official/2p6") Click
tr
td 2018-06-25
td Please help write new descriptions for the groups.
td: a(href="https://tildes.net/~tildes.official/2rn") Click
tr
td 2018-06-26
td How to handle account deletion.
td: a(href="https://tildes.net/~tildes.official/2ta") Click
tr
td 2018-06-28
td Minor group updates.
td: a(href="https://tildes.net/~tildes.official/2vm") Click
tr
td 2018-06-29
td Allowing user to post anonymously?
td: a(href="https://tildes.net/~tildes.official/2x3") Click
article(id="issue-table")
h2 Issue Table
h3(id="opened") Opened
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/99") 99
td Posts can be double-posted by submitting multip...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/01 05:26:46
td 2018/06/06 20:28:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/100") 100
td Disable autocomplete on form input fields
td: a(href="https://gitlab.com/toaster_") toaster_
td 2018/06/01 20:00:01
td 2018/06/01 22:34:46
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/101") 101
td Page sometimes hangs on mobile when going back ...
td: a(href="https://gitlab.com/AdamHebby") AdamHebby
td 2018/06/01 20:21:24
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/102") 102
td Redirect moved topics
td: a(href="https://gitlab.com/g4nym3de") g4nym3de
td 2018/06/01 21:08:02
td 2018/06/14 20:59:23
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/103") 103
td Move new comment box to top
td: a(href="https://gitlab.com/toritxtornado") toritxtornado
td 2018/06/01 21:29:52
td 2018/06/01 21:36:08
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/104") 104
td Use CSS variables
td: a(href="https://gitlab.com/expectocode") expectocode
td 2018/06/01 22:27:39
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/105") 105
td make @OP and @userwhoposted synonymous in comme...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/02 20:35:21
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/106") 106
td 2 factor authentication for the site
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/03 19:26:38
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/107") 107
td Add ability to "watch" topics (or individual co...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/03 20:51:36
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/108") 108
td some TLDs are not being parsed correctly as hyp...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/03 22:29:12
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/109") 109
td Inconsistent max width on screens larger than 7...
td: a(href="https://gitlab.com/zowesiouff") zowesiouff
td 2018/06/03 23:38:48
td 2018/06/04 21:10:31
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/110") 110
td Automatically quote selected text when typing a...
td: a(href="https://gitlab.com/nzealand") nzealand
td 2018/06/04 23:54:31
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/111") 111
td Sort comments by newest leaf, not branch / dept...
td: a(href="https://gitlab.com/010101") 010101
td 2018/06/05 02:52:41
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/112") 112
td Implement basic topic tag filtering
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/05 09:23:28
td 2018/06/14 22:36:14
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/113") 113
td Add group-specific topic tag filters
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/05 10:24:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/114") 114
td Message inbox doesn't sort one-message conversa...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/07 19:51:26
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/115") 115
td Long comment headers display badly on narrow sc...
td: a(href="https://gitlab.com/expectocode") expectocode
td 2018/06/07 21:01:14
td 2018/06/08 00:01:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/116") 116
td Clicking 'tag' multiple times opens multiple in...
td: a(href="https://gitlab.com/lpopesco") lpopesco
td 2018/06/08 17:03:55
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/117") 117
td Block links from low quality sources
td: a(href="https://gitlab.com/theCrius") theCrius
td 2018/06/09 09:41:18
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/118") 118
td Allow a user to click on a post tag to see all ...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/06/09 20:20:12
td 2018/06/14 20:03:10
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/119") 119
td Change the text alignment of the group subscrib...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/09 22:06:25
td 2018/06/12 03:28:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/120") 120
td Small visual bug when submitting invalid URL
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/10 04:45:05
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/121") 121
td Avoid indentation of comments wherever possible
td: a(href="https://gitlab.com/pitchforkmatters") pitchforkmatters
td 2018/06/10 19:49:59
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/122") 122
td Clickable borders that collapse comment trees
td: a(href="https://gitlab.com/pitchforkmatters") pitchforkmatters
td 2018/06/10 20:52:31
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/123") 123
td Subdomains only use default theme
td: a(href="https://gitlab.com/dankebitte") dankebitte
td 2018/06/11 08:23:46
td 2018/06/11 20:44:32
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/124") 124
td Auto fill submission metadata (title, tags, etc)
td: a(href="https://gitlab.com/expectocode") expectocode
td 2018/06/11 20:12:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/125") 125
td Add ability for users to view their recently vi...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/12 00:59:38
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/126") 126
td Add permalinks for tags and mutli-tag page supp...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/12 01:13:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/127") 127
td Append an optional password recovery setup to t...
td: a(href="https://gitlab.com/pitchforkmatters") pitchforkmatters
td 2018/06/13 02:55:59
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/128") 128
td lynx based browsers returning 400 Bad CSRF Origin
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/13 07:28:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/129") 129
td It is possible to vote on a deleted topic, and ...
td: a(href="https://gitlab.com/twcus") twcus
td 2018/06/13 19:34:56
td 2018/06/14 09:20:19
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/130") 130
td Posting an egregiously lengthy text/comment res...
td: a(href="https://gitlab.com/twcus") twcus
td 2018/06/13 21:15:19
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/131") 131
td Make the future API support MessagePack
td: a(href="https://gitlab.com/lordpipe") lordpipe
td 2018/06/14 01:49:48
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/132") 132
td Mark notification as read after being clicked o...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/14 19:07:00
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/133") 133
td Period-separated string is automatically parsed...
td: a(href="https://gitlab.com/sidmani") sidmani
td 2018/06/14 20:19:16
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/134") 134
td Limit topic tags to a reasonable maximum
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/14 20:41:15
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/135") 135
td Add reference on the password recovery settings...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/15 06:42:01
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/136") 136
td Topic tag filters should still apply while view...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/15 19:58:03
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/137") 137
td Allow code blocks to be collapsed
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/16 14:32:35
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/138") 138
td Remove margin-right from last item in tab-listi...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/16 19:37:50
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/139") 139
td Put comments and replies into nested lists in H...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/16 21:38:28
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/140") 140
td Add the ability for users to vote for alternati...
td: a(href="https://gitlab.com/lordpipe") lordpipe
td 2018/06/20 05:57:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/141") 141
td Add "whisper comments"
td: a(href="https://gitlab.com/Natanael_L") Natanael_L
td 2018/06/21 12:49:12
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/142") 142
td Add autocomplete for common tags
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/21 18:50:16
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/143") 143
td iOS - clicking a tag in a group page results in...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/23 22:35:14
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/144") 144
td More favicons for site-topic
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/25 13:52:59
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/145") 145
td Topic tag filters are not filtering out "descen...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/25 22:13:02
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/146") 146
td Change theme application mechanic
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/26 22:46:46
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/147") 147
td A bullet is displayed to the left of each post'...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/06/28 16:41:39
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/148") 148
td In user's unread listing show the count of othe...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/06/29 17:49:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/149") 149
td Filter tags button too big?
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/29 19:46:57
td
h3(id="closed") Closed
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/16") 16
td Add description of relevant database triggers t...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/07 23:14:07
td 2018/06/12 07:41:00
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/24") 24
td Fix pluralizations of "votes", "messages", etc.
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 20:10:26
td 2018/06/19 03:46:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/32") 32
td Session timeout errors
td: a(href="https://gitlab.com/arghdos") arghdos
td 2018/05/21 19:40:19
td 2018/06/03 21:00:44
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/36") 36
td Clicking "Cancel" on a comment in progress dele...
td: a(href="https://gitlab.com/SafariMonkey") SafariMonkey
td 2018/05/22 14:00:39
td 2018/06/04 03:53:23
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/52") 52
td Add ability to jump to parent comment
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 04:02:50
td 2018/06/03 21:01:49
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/59") 59
td on registration page consider mentioning "Have ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/25 18:22:39
td 2018/06/12 03:12:30
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/92") 92
td Can't collapse comment thread when top-level po...
td: a(href="https://gitlab.com/jbonatakis") jbonatakis
td 2018/05/30 14:45:37
td 2018/06/02 07:36:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/93") 93
td add visual indication of subscription on the gr...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/31 05:11:17
td 2018/06/02 02:17:27
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/99") 99
td Posts can be double-posted by submitting multip...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/01 05:26:46
td 2018/06/06 20:28:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/100") 100
td Disable autocomplete on form input fields
td: a(href="https://gitlab.com/toaster_") toaster_
td 2018/06/01 20:00:01
td 2018/06/01 22:34:46
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/102") 102
td Redirect moved topics
td: a(href="https://gitlab.com/g4nym3de") g4nym3de
td 2018/06/01 21:08:02
td 2018/06/14 20:59:23
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/103") 103
td Move new comment box to top
td: a(href="https://gitlab.com/toritxtornado") toritxtornado
td 2018/06/01 21:29:52
td 2018/06/01 21:36:08
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/109") 109
td Inconsistent max width on screens larger than 7...
td: a(href="https://gitlab.com/zowesiouff") zowesiouff
td 2018/06/03 23:38:48
td 2018/06/04 21:10:31
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/112") 112
td Implement basic topic tag filtering
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/05 09:23:28
td 2018/06/14 22:36:14
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/115") 115
td Long comment headers display badly on narrow sc...
td: a(href="https://gitlab.com/expectocode") expectocode
td 2018/06/07 21:01:14
td 2018/06/08 00:01:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/118") 118
td Allow a user to click on a post tag to see all ...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/06/09 20:20:12
td 2018/06/14 20:03:10
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/119") 119
td Change the text alignment of the group subscrib...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/09 22:06:25
td 2018/06/12 03:28:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/123") 123
td Subdomains only use default theme
td: a(href="https://gitlab.com/dankebitte") dankebitte
td 2018/06/11 08:23:46
td 2018/06/11 20:44:32
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/129") 129
td It is possible to vote on a deleted topic, and ...
td: a(href="https://gitlab.com/twcus") twcus
td 2018/06/13 19:34:56
td 2018/06/14 09:20:19
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

1448
src/posts/may-2018.html Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,831 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title May 2018
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 May 2018
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
li: a(href="#statistics") Statistics
li: a(href="#daily-discussions") Daily Discussions
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p I thought some people might be interested in seeing the progression of Tildes in a nice, digestible way. So I thought a "dev blog" of sorts would be a good way to do this. This is just a test post to see find out what you guys think about it.
p I'd also like to say this was entirely inspired by
|
|
a(href="https://blog.ppy.sh/") osu!'s Dev Blog
|
| by
|
a(href="https://ppy.sh") peppy
| .
| As I love reading through those about the progress osu! is making, which is one of my favorite games.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
p I wasn't around in the month of May, so I wouldn't really know where to start by summarizing some highlights of what happened but for June I wouldn't mind trying to do this. This would be the most interesting part of the post and would feature some important stuff that happened and notable changes.
article(id="statistics")
h2 Statistics
p In May, a total of 91 issues were opened and 27 were closed.
p I plan on adding more statistics, such as average time to close, but for now there's not much else as I just want to get this out there before I work on much more.
article(id="daily-discussions")
h2 Daily Discussions
p The Daily Discussions weren't collected for May.
article(id="issue-table")
h2 Issue Table
h3(id="opened") Opened
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/8") 8
td Error when cancelling a reply on iOS (iPad Pro,...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/04 01:26:50
td 2018/05/28 19:18:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/9") 9
td Page formatting displays incorrectly in Safari
td: a(href="https://gitlab.com/GabrielMorris") GabrielMorris
td 2018/05/04 02:38:42
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/10") 10
td Add a maximum length to markdown fields (text t...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/04 07:38:16
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/11") 11
td Light/dark theme is not persistent across devices
td: a(href="https://gitlab.com/GabrielMorris") GabrielMorris
td 2018/05/04 22:23:21
td 2018/05/18 08:27:19
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/12") 12
td Comment visit tracking doesn't account for the ...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/04 23:12:01
td 2018/05/07 08:25:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/13") 13
td Comment visit tracking doesn't account for comm...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/04 23:19:17
td 2018/05/07 08:26:38
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/14") 14
td Add ability to link to a comment instead of jus...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/06 00:07:14
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/15") 15
td Site icons have a slight "bleed" on their edges
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/07 21:22:14
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/16") 16
td Add description of relevant database triggers t...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/07 23:14:07
td 2018/06/12 07:41:00
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/17") 17
td Allow changing the threshold for highlighting n...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/07 23:38:48
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/18") 18
td NSFW tag needs special styling/behavior
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/07 23:50:54
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/19") 19
td Add sticky topics
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/09 00:21:18
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/20") 20
td The "Sidebar" link on mobile should highlight i...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/11 02:14:32
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/21") 21
td `Voted` text changes back to `Vote` in reply no...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/18 02:12:45
td 2018/05/25 09:35:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/22") 22
td Implement PWA manifest
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 03:38:44
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/23") 23
td Investigate and potentially implement webmentions
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 04:33:54
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/24") 24
td Fix pluralizations of "votes", "messages", etc.
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 20:10:26
td 2018/06/19 03:46:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/25") 25
td Add a feature for previewing comments/topics/me...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 20:16:39
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/26") 26
td Textbox size is unnecessarily restricted for ma...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 20:18:19
td 2018/05/23 07:07:38
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/27") 27
td Support dark theme on blog/docs
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 20:20:03
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/28") 28
td Improve layout for browsers that don't support ...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/20 10:56:26
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/29") 29
td Word count showing as () instead of (0 words) i...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/20 17:51:54
td 2018/05/21 00:59:05
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/30") 30
td Look into setting up a Tor hidden service
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/21 09:53:44
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/31") 31
td Text rendering bug: Hyperlinked monospace text ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/21 10:16:57
td 2018/05/22 02:56:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/32") 32
td Session timeout errors
td: a(href="https://gitlab.com/arghdos") arghdos
td 2018/05/21 19:40:19
td 2018/06/03 21:00:44
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/33") 33
td New comment rendering location
td: a(href="https://gitlab.com/g4nym3de") g4nym3de
td 2018/05/21 21:29:39
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/34") 34
td Create option to open external links in new tabs
td: a(href="https://gitlab.com/chris109") chris109
td 2018/05/22 02:06:18
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/35") 35
td Tags force tildes group to stretch on mobile ho...
td: a(href="https://gitlab.com/theCrius") theCrius
td 2018/05/22 08:22:32
td 2018/05/22 20:39:40
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/36") 36
td Clicking "Cancel" on a comment in progress dele...
td: a(href="https://gitlab.com/SafariMonkey") SafariMonkey
td 2018/05/22 14:00:39
td 2018/06/04 03:53:23
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/37") 37
td Using "hip-hop" tag shows "Invalid Tag" but doe...
td: a(href="https://gitlab.com/vishnurajeevan") vishnurajeevan
td 2018/05/22 15:57:11
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/38") 38
td ~group does not wrap properly for long titles o...
td: a(href="https://gitlab.com/arghdos") arghdos
td 2018/05/22 21:38:35
td 2018/05/22 22:34:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/39") 39
td Ordered list renders differently on different p...
td: a(href="https://gitlab.com/arghdos") arghdos
td 2018/05/22 22:30:28
td 2018/05/30 00:46:26
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/40") 40
td add gitlab link to footer
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/22 22:40:32
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/41") 41
td add "context" button that shows self-text to th...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/22 22:43:43
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/42") 42
td ability to revisit past "mark as read" notifica...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/22 22:47:24
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/43") 43
td add "to the top" anchor link to footer
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/22 22:48:33
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/44") 44
td Excessive tags cause scrollbar to appear
td: a(href="https://gitlab.com/kaushalmodi") kaushalmodi
td 2018/05/22 22:55:08
td 2018/05/23 07:08:49
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/45") 45
td Have collapse comment button presses remembered
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 00:00:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/46") 46
td add donate link to footer
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 00:16:37
td 2018/05/23 00:17:15
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/47") 47
td Add a better/larger favicon for mobile icons
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/23 00:44:30
td 2018/05/30 06:17:32
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/48") 48
td "Mark as Read" should not fade out the box
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 01:39:00
td 2018/05/23 07:13:26
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/49") 49
td Add option to "Mark all as read" in notifications
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 01:40:04
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/50") 50
td make it easier to distinguish between voted and...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 01:57:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/51") 51
td ability to hide topics (and view/unhide ones us...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 02:23:06
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/52") 52
td Add ability to jump to parent comment
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 04:02:50
td 2018/06/03 21:01:49
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/53") 53
td [Duplicate] Comments in notifications don't cor...
td: a(href="https://gitlab.com/Emerald_Knight") Emerald_Knight
td 2018/05/24 03:35:41
td 2018/05/24 04:29:42
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/54") 54
td Change mobile browser theme to match the user's...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/24 21:04:14
td 2018/05/26 00:50:27
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/55") 55
td Need better handling for deeply-nested comment ...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/24 21:05:57
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/56") 56
td A better way to reference text of the original ...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/24 21:08:12
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/57") 57
td add spoiler tag support for comments
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/25 11:54:02
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/58") 58
td Text inside comment is limited to 40 rem but th...
td: a(href="https://gitlab.com/theCrius") theCrius
td 2018/05/25 17:33:06
td 2018/05/26 14:42:46
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/59") 59
td on registration page consider mentioning "Have ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/25 18:22:39
td 2018/06/12 03:12:30
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/60") 60
td research trello/gitlab integration/sync options
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/25 19:15:48
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/61") 61
td Voting on a deleted comment makes a big, ugly e...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/26 04:46:15
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/62") 62
td make the comment anchor # more visible
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 04:58:50
td 2018/05/28 02:10:39
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/63") 63
td small visual bug in title length error message
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 06:49:07
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/64") 64
td strange image html element behavior
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 07:10:37
td 2018/05/26 07:18:34
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/65") 65
td leaving unclosed a makes entire comment after...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 07:26:48
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/66") 66
td trying to delete comment that isn't yours resul...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 07:28:22
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/67") 67
td add ability to view comment source
td: a(href="https://gitlab.com/xiretza") xiretza
td 2018/05/26 08:41:39
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/68") 68
td Add a "group does not exist" page instead of ge...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/26 10:05:06
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/69") 69
td Double click to collapse
td: a(href="https://gitlab.com/iiv") iiv
td 2018/05/26 12:09:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/70") 70
td Ordering posts by a custom period greater than ...
td: a(href="https://gitlab.com/ko.jak") ko.jak
td 2018/05/26 17:31:01
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/71") 71
td Put a character limit on tags
td: a(href="https://gitlab.com/ko.jak") ko.jak
td 2018/05/26 17:47:59
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/72") 72
td Markdown / Editor: Loosing extra spaces inside ...
td: a(href="https://gitlab.com/zowesiouff") zowesiouff
td 2018/05/26 17:51:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/73") 73
td find a way to better inform users about account...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 18:07:40
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/74") 74
td exclude "mark as read" comments from the (# new...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 18:14:46
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/75") 75
td add warning when navigating away from the page ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 18:18:07
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/76") 76
td Website font is not standardized across platforms
td: a(href="https://gitlab.com/ko.jak") ko.jak
td 2018/05/26 19:46:00
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/77") 77
td Separate topics and comments on profile page
td: a(href="https://gitlab.com/g4nym3de") g4nym3de
td 2018/05/27 00:20:47
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/78") 78
td Syntax highlighting in markdown code blocks
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/05/27 16:45:59
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/79") 79
td Theme settings not passing between platforms.
td: a(href="https://gitlab.com/tsikorksi") tsikorksi
td 2018/05/27 22:54:04
td 2018/05/27 23:17:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/80") 80
td Set up repository mirroring to make the code av...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/28 02:12:26
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/81") 81
td Session cookie expires immediately, even when I...
td: a(href="https://gitlab.com/ianh_") ianh_
td 2018/05/28 02:31:11
td 2018/05/28 02:35:31
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/82") 82
td adding too many tags results in ugly error
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/28 05:04:00
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/83") 83
td look into Brave browser publisher program
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/28 20:30:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/84") 84
td look into Liberapay crowdfunding platform as Pa...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/28 20:32:12
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/85") 85
td Expired CSRF when submitting form causes ugly H...
td: a(href="https://gitlab.com/anowlcalledjosh") anowlcalledjosh
td 2018/05/28 23:15:57
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/86") 86
td Expanding and collapsing self-text on posts cau...
td: a(href="https://gitlab.com/davv") davv
td 2018/05/29 00:25:39
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/87") 87
td Add homescreen icon for iOS users.
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/29 17:51:50
td 2018/05/30 06:18:07
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/88") 88
td Add "collapse all non-top-level comments"
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/29 19:13:56
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/89") 89
td If you try to access a page and are logged out,...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/29 20:19:45
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/90") 90
td Implement basic search
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/29 21:25:22
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/91") 91
td Add a "send new message" link in the PM section
td: a(href="https://gitlab.com/theCrius") theCrius
td 2018/05/29 23:43:37
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/92") 92
td Can't collapse comment thread when top-level po...
td: a(href="https://gitlab.com/jbonatakis") jbonatakis
td 2018/05/30 14:45:37
td 2018/06/02 07:36:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/93") 93
td add visual indication of subscription on the gr...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/31 05:11:17
td 2018/06/02 02:17:27
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/94") 94
td add 'save' functionality
td: a(href="https://gitlab.com/xiretza") xiretza
td 2018/05/31 15:27:48
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/95") 95
td can't edit comments in one specific thread
td: a(href="https://gitlab.com/zowesiouff") zowesiouff
td 2018/05/31 17:47:28
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/96") 96
td notify when username is mentioned
td: a(href="https://gitlab.com/xiretza") xiretza
td 2018/05/31 20:26:48
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/97") 97
td Improve messages after updating settings
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/31 21:12:34
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/98") 98
td [suggestion] add a browser popup when you try t...
td: a(href="https://gitlab.com/Iamsodarncool") Iamsodarncool
td 2018/05/31 23:12:06
td 2018/05/31 23:15:52
h3(id="closed") Closed
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/2") 2
td Add button to collapse comments and replies
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/04/27 02:59:19
td 2018/05/01 03:41:03
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/5") 5
td Add an "all time" period for topic listings
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/04/29 08:32:29
td 2018/05/13 02:02:32
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/6") 6
td Allow tagging topic while posting, instead of h...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/04/29 20:32:31
td 2018/05/04 19:54:14
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/8") 8
td Error when cancelling a reply on iOS (iPad Pro,...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/04 01:26:50
td 2018/05/28 19:18:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/11") 11
td Light/dark theme is not persistent across devices
td: a(href="https://gitlab.com/GabrielMorris") GabrielMorris
td 2018/05/04 22:23:21
td 2018/05/18 08:27:19
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/12") 12
td Comment visit tracking doesn't account for the ...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/04 23:12:01
td 2018/05/07 08:25:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/13") 13
td Comment visit tracking doesn't account for comm...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/04 23:19:17
td 2018/05/07 08:26:38
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/21") 21
td `Voted` text changes back to `Vote` in reply no...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/18 02:12:45
td 2018/05/25 09:35:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/26") 26
td Textbox size is unnecessarily restricted for ma...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/19 20:18:19
td 2018/05/23 07:07:38
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/29") 29
td Word count showing as () instead of (0 words) i...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/20 17:51:54
td 2018/05/21 00:59:05
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/31") 31
td Text rendering bug: Hyperlinked monospace text ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/21 10:16:57
td 2018/05/22 02:56:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/35") 35
td Tags force tildes group to stretch on mobile ho...
td: a(href="https://gitlab.com/theCrius") theCrius
td 2018/05/22 08:22:32
td 2018/05/22 20:39:40
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/38") 38
td ~group does not wrap properly for long titles o...
td: a(href="https://gitlab.com/arghdos") arghdos
td 2018/05/22 21:38:35
td 2018/05/22 22:34:54
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/39") 39
td Ordered list renders differently on different p...
td: a(href="https://gitlab.com/arghdos") arghdos
td 2018/05/22 22:30:28
td 2018/05/30 00:46:26
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/44") 44
td Excessive tags cause scrollbar to appear
td: a(href="https://gitlab.com/kaushalmodi") kaushalmodi
td 2018/05/22 22:55:08
td 2018/05/23 07:08:49
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/46") 46
td add donate link to footer
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 00:16:37
td 2018/05/23 00:17:15
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/47") 47
td Add a better/larger favicon for mobile icons
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/23 00:44:30
td 2018/05/30 06:17:32
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/48") 48
td "Mark as Read" should not fade out the box
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/23 01:39:00
td 2018/05/23 07:13:26
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/53") 53
td [Duplicate] Comments in notifications don't cor...
td: a(href="https://gitlab.com/Emerald_Knight") Emerald_Knight
td 2018/05/24 03:35:41
td 2018/05/24 04:29:42
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/54") 54
td Change mobile browser theme to match the user's...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/05/24 21:04:14
td 2018/05/26 00:50:27
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/58") 58
td Text inside comment is limited to 40 rem but th...
td: a(href="https://gitlab.com/theCrius") theCrius
td 2018/05/25 17:33:06
td 2018/05/26 14:42:46
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/62") 62
td make the comment anchor # more visible
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 04:58:50
td 2018/05/28 02:10:39
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/64") 64
td strange image html element behavior
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/26 07:10:37
td 2018/05/26 07:18:34
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/79") 79
td Theme settings not passing between platforms.
td: a(href="https://gitlab.com/tsikorksi") tsikorksi
td 2018/05/27 22:54:04
td 2018/05/27 23:17:33
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/81") 81
td Session cookie expires immediately, even when I...
td: a(href="https://gitlab.com/ianh_") ianh_
td 2018/05/28 02:31:11
td 2018/05/28 02:35:31
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/87") 87
td Add homescreen icon for iOS users.
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/29 17:51:50
td 2018/05/30 06:18:07
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/98") 98
td [suggestion] add a browser popup when you try t...
td: a(href="https://gitlab.com/Iamsodarncool") Iamsodarncool
td 2018/05/31 23:12:06
td 2018/05/31 23:15:52
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

View File

@ -0,0 +1,508 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>November 2018</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/post.css">
<!-- NOTE: favicons are under "src/favicons" but in "public/" for build -->
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
<link rel="manifest" href="../site.webmanifest">
<link rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36">
<link rel="shortcut icon" href="../favicon.ico">
<meta name="msapplication-TileColor" content="#282a36">
<meta name="msapplication-config" content="../browserconfig.xml">
<meta name="theme-color" content="#282a36">
</head>
<body>
<div id="wrapper">
<h1>November 2018</h1>
<section id="post">
<article id="toc">
<h2>Table Of Contents</h2>
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#feedback">Feedback</a>
</li>
<li>
<a href="#highlights">Highlights</a>
<ul>
<li>
<a href="#a-slow-month">A Slow Month</a>
</li>
</ul>
</li>
<li>
<a href="#statistics">Statistics</a>
</li>
<li>
<a href="#issue-table">Issue Table</a>
<ul>
<li>
<a href="#opened">Opened</a>
</li>
<li>
<a href="#closed">Closed</a>
</li>
</ul>
</li>
</ul>
</article>
<article id="about">
<h2>About</h2>
<p>The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made.
Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and
closed in that month, along with some interesting statistics so you can get a look into the development
process and a quick grasp of anything you may have missed.</p>
</article>
<article id="feedback">
<h2>Feedback</h2>
<p>If anything is incorrect or you have anything that you'd like to see changed or added please
<a href="https://gitlab.com/Bauke/tildes-issue-log/issues">open an issue</a>,
<a href="https://tildes.net/user/Bauke/new_message">PM me</a>
or comment on the posted topic on Tildes.</p>
<p>If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like
Tildes, this will remain entirely open-source.</p>
</article>
<article id="highlights">
<h2>Highlights</h2>
<h3 id="a-slow-month">A Slow Month</h3>
<p>November has been a slow and uneventful month and
<a href="https://tildes.net/~tildes.official/8oi">the only official topic from this month</a>
talks about why that is and how December is gonna be noticeably different, since the plan is to make Tildes
publicly viewable! There's more details in the official topic so definitely read that if you haven't already.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-30-11</p>
</details>
</article>
<article id="statistics">
<h2>Statistics</h2>
<p>In the month of November 21 issues were opened and 6 issues were closed.</p>
<p>An average of 0.70 issues were opened and 0.20 issues were closed each day.</p>
<p>The average time to close issues was 3.69 days or 88.47 hours.</p>
<p>Top 3 issue creators:</p>
<ol>
<li>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=cfabbro">4 issues created</a>.</li>
<li>
<a href="https://gitlab.com/Bauke">Bauke</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=Bauke">4 issues created</a>.</li>
<li>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=Deimorz">3 issues created</a>.</li>
</ol>
<p>Amount of labels assigned to currently open issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=bug">bug</a>:
5 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=design">design</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=dev">dev</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=feature">feature</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=investigate">investigate</a>:
4 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=suggestion">suggestion</a>:
6 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=tweak">tweak</a>:
1 time.</li>
</ul>
<p>Amount of labels assigned to closed issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=bug">bug</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=code">code</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=design">design</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=in+progress">in
progress</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=suggestion">suggestion</a>:
2 times.</li>
</ul>
</article>
<article id="issue-table">
<h2>Issue Table</h2>
<h3 id="opened">Opened</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/313">313</a>
</td>
<td>Add organization options to the bookmark featur...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/11/01 12:37:29</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/314">314</a>
</td>
<td>Add a way to identify extra-good topics, simila...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/11/01 16:53:43</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/315">315</a>
</td>
<td>Remove "title_of_topic" part from URL</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/11/01 20:07:17</td>
<td>2018/11/01 20:15:41</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/316">316</a>
</td>
<td>Add short links to topics (and comments?) via t...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/11/01 20:23:10</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/317">317</a>
</td>
<td>Feature request: tag own comments as offtopic (...</td>
<td>
<a href="https://gitlab.com/cadadr">cadadr</a>
</td>
<td>2018/11/01 22:31:46</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/318">318</a>
</td>
<td>Add a "most bookmarked" topic sort and/or "# of...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/11/01 22:51:09</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/319">319</a>
</td>
<td>Update Pyramid to 1.10</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/11/01 23:25:44</td>
<td>2018/11/21 00:54:29</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/320">320</a>
</td>
<td>Incorrect error message when no search results ...</td>
<td>
<a href="https://gitlab.com/anowlcalledjosh">anowlcalledjosh</a>
</td>
<td>2018/11/02 00:26:27</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/321">321</a>
</td>
<td>Populate dev database with topics/comments/... ...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/11/06 15:11:41</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/322">322</a>
</td>
<td>Automatic mobile & non-mobile link support</td>
<td>
<a href="https://gitlab.com/dcelasun">dcelasun</a>
</td>
<td>2018/11/06 18:42:39</td>
<td>2018/11/07 20:26:17</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/323">323</a>
</td>
<td>Decrease indent size in code blocks</td>
<td>
<a href="https://gitlab.com/haykam">haykam</a>
</td>
<td>2018/11/06 22:24:38</td>
<td>2018/11/07 19:17:51</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/324">324</a>
</td>
<td>Syntax highlighting isn't applying CSS classes.</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/11/06 23:03:56</td>
<td>2018/11/07 00:58:44</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/325">325</a>
</td>
<td>Text input boxes can be covered by other page e...</td>
<td>
<a href="https://gitlab.com/Wanda-Seldon">Wanda-Seldon</a>
</td>
<td>2018/11/10 16:37:54</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/326">326</a>
</td>
<td>A space in the tag query parameter results in a...</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/11/11 12:33:58</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/327">327</a>
</td>
<td>Don't titlecase abbreviations</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/11/11 22:47:48</td>
<td>2018/11/12 23:29:43</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/328">328</a>
</td>
<td>Topic excerpt should show bold/strikethrough/.....</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/11/13 05:13:31</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/330">330</a>
</td>
<td>Scrape the original source domain from outline....</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/11/18 16:08:57</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/331">331</a>
</td>
<td>Filtering by multiple tags</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/11/21 19:50:07</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/332">332</a>
</td>
<td>New comment count is wrong after marking a repl...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/11/22 08:03:57</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/333">333</a>
</td>
<td>Fresh Vagrant Up gives an error.</td>
<td>
<a href="https://gitlab.com/jms301">jms301</a>
</td>
<td>2018/11/25 17:27:45</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/334">334</a>
</td>
<td>Ampersands aren't included in links</td>
<td>
<a href="https://gitlab.com/anowlcalledjosh">anowlcalledjosh</a>
</td>
<td>2018/11/28 23:13:27</td>
<td> </td>
</tr>
</tbody>
</table>
<h3 id="closed">Closed</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/315">315</a>
</td>
<td>Remove "title_of_topic" part from URL</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/11/01 20:07:17</td>
<td>2018/11/01 20:15:41</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/319">319</a>
</td>
<td>Update Pyramid to 1.10</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/11/01 23:25:44</td>
<td>2018/11/21 00:54:29</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/322">322</a>
</td>
<td>Automatic mobile & non-mobile link support</td>
<td>
<a href="https://gitlab.com/dcelasun">dcelasun</a>
</td>
<td>2018/11/06 18:42:39</td>
<td>2018/11/07 20:26:17</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/323">323</a>
</td>
<td>Decrease indent size in code blocks</td>
<td>
<a href="https://gitlab.com/haykam">haykam</a>
</td>
<td>2018/11/06 22:24:38</td>
<td>2018/11/07 19:17:51</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/324">324</a>
</td>
<td>Syntax highlighting isn't applying CSS classes.</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/11/06 23:03:56</td>
<td>2018/11/07 00:58:44</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/327">327</a>
</td>
<td>Don't titlecase abbreviations</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/11/11 22:47:48</td>
<td>2018/11/12 23:29:43</td>
</tr>
</tbody>
</table>
</article>
</section>
<footer id="footer">
<h3>
<a href="../index.html">Home</a>
</h3>
<h3>
<a href="#">To Top</a>
</h3>
<h3>
<a href="https://tildes.net">Tildes</a>
</h3>
<h3>Built with
<a href="https://gulpjs.com">Gulp</a>
and
<a href="https://sass-lang.com/">Sass</a>
</h3>
<h3>Colors from
<a href="https://draculatheme.com">Dracula</a>
</h3>
<h3>View the
<a href="https://gitlab.com/Bauke/tildes-issue-log">source</a>
</h3>
</footer>
</div>
</body>
</html>

View File

@ -1,364 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title November 2018
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 November 2018
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
ul
li: a(href="#a-slow-month") A Slow Month
li: a(href="#statistics") Statistics
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
//- User written highlights of what happened with development and any notable changes, if applicable.
h3(id="a-slow-month") A Slow Month
p November has been a slow and uneventful month and
|
|
a(href="https://tildes.net/~tildes.official/8oi") the only official topic from this month
|
| talks about why that is and how December is gonna be noticeably different, since the plan is to make Tildes publicly viewable! There's more details in the official topic so definitely read that if you haven't already.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-30-11
article(id="statistics")
h2 Statistics
p In the month of November 21 issues were opened and 6 issues were closed.
p An average of 0.70 issues were opened and 0.20 issues were closed each day.
p The average time to close issues was 3.69 days or 88.47 hours.
p Top 3 issue creators:
ol
li
a(href="https://gitlab.com/cfabbro") cfabbro
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=cfabbro") 4 issues created
| .
li
a(href="https://gitlab.com/Bauke") Bauke
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Bauke") 4 issues created
| .
li
a(href="https://gitlab.com/Deimorz") Deimorz
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Deimorz") 3 issues created
| .
p Amount of labels assigned to currently open issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=bug") bug
| :
| 5 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=design") design
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=dev") dev
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=feature") feature
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=investigate") investigate
| :
| 4 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=suggestion") suggestion
| :
| 6 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=tweak") tweak
| :
| 1 time.
p Amount of labels assigned to closed issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=bug") bug
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=code") code
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=design") design
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=in+progress") in progress
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=suggestion") suggestion
| :
| 2 times.
article(id="issue-table")
h2 Issue Table
h3(id="opened") Opened
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/313") 313
td Add organization options to the bookmark featur...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/11/01 12:37:29
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/314") 314
td Add a way to identify extra-good topics, simila...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/11/01 16:53:43
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/315") 315
td Remove "title_of_topic" part from URL
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/11/01 20:07:17
td 2018/11/01 20:15:41
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/316") 316
td Add short links to topics (and comments?) via t...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/11/01 20:23:10
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/317") 317
td Feature request: tag own comments as offtopic (...
td: a(href="https://gitlab.com/cadadr") cadadr
td 2018/11/01 22:31:46
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/318") 318
td Add a "most bookmarked" topic sort and/or "# of...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/11/01 22:51:09
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/319") 319
td Update Pyramid to 1.10
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/11/01 23:25:44
td 2018/11/21 00:54:29
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/320") 320
td Incorrect error message when no search results ...
td: a(href="https://gitlab.com/anowlcalledjosh") anowlcalledjosh
td 2018/11/02 00:26:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/321") 321
td Populate dev database with topics/comments/... ...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/11/06 15:11:41
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/322") 322
td Automatic mobile & non-mobile link support
td: a(href="https://gitlab.com/dcelasun") dcelasun
td 2018/11/06 18:42:39
td 2018/11/07 20:26:17
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/323") 323
td Decrease indent size in code blocks
td: a(href="https://gitlab.com/haykam") haykam
td 2018/11/06 22:24:38
td 2018/11/07 19:17:51
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/324") 324
td Syntax highlighting isn't applying CSS classes.
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/11/06 23:03:56
td 2018/11/07 00:58:44
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/325") 325
td Text input boxes can be covered by other page e...
td: a(href="https://gitlab.com/Wanda-Seldon") Wanda-Seldon
td 2018/11/10 16:37:54
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/326") 326
td A space in the tag query parameter results in a...
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/11/11 12:33:58
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/327") 327
td Don't titlecase abbreviations
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/11/11 22:47:48
td 2018/11/12 23:29:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/328") 328
td Topic excerpt should show bold/strikethrough/.....
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/11/13 05:13:31
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/330") 330
td Scrape the original source domain from outline....
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/11/18 16:08:57
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/331") 331
td Filtering by multiple tags
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/11/21 19:50:07
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/332") 332
td New comment count is wrong after marking a repl...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/11/22 08:03:57
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/333") 333
td Fresh Vagrant Up gives an error.
td: a(href="https://gitlab.com/jms301") jms301
td 2018/11/25 17:27:45
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/334") 334
td Ampersands aren't included in links
td: a(href="https://gitlab.com/anowlcalledjosh") anowlcalledjosh
td 2018/11/28 23:13:27
td
h3(id="closed") Closed
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/315") 315
td Remove "title_of_topic" part from URL
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/11/01 20:07:17
td 2018/11/01 20:15:41
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/319") 319
td Update Pyramid to 1.10
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/11/01 23:25:44
td 2018/11/21 00:54:29
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/322") 322
td Automatic mobile & non-mobile link support
td: a(href="https://gitlab.com/dcelasun") dcelasun
td 2018/11/06 18:42:39
td 2018/11/07 20:26:17
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/323") 323
td Decrease indent size in code blocks
td: a(href="https://gitlab.com/haykam") haykam
td 2018/11/06 22:24:38
td 2018/11/07 19:17:51
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/324") 324
td Syntax highlighting isn't applying CSS classes.
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/11/06 23:03:56
td 2018/11/07 00:58:44
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/327") 327
td Don't titlecase abbreviations
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/11/11 22:47:48
td 2018/11/12 23:29:43
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

995
src/posts/october-2018.html Normal file
View File

@ -0,0 +1,995 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>October 2018</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/post.css">
<!-- NOTE: favicons are under "src/favicons" but in "public/" for build -->
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
<link rel="manifest" href="../site.webmanifest">
<link rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36">
<link rel="shortcut icon" href="../favicon.ico">
<meta name="msapplication-TileColor" content="#282a36">
<meta name="msapplication-config" content="../browserconfig.xml">
<meta name="theme-color" content="#282a36">
</head>
<body>
<div id="wrapper">
<h1>October 2018</h1>
<section id="post">
<article id="toc">
<h2>Table Of Contents</h2>
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#feedback">Feedback</a>
</li>
<li>
<a href="#highlights">Highlights</a>
<ul>
<li>
<a href="#search-tags">Search Tags</a>
</li>
<li>
<a href="#brave-donations">Brave Donations</a>
</li>
<li>
<a href="#six-months">Six-Month Anniversary</a>
</li>
<li>
<a href="#bookmarks">Bookmarks</a>
</li>
</ul>
</li>
<li>
<a href="#statistics">Statistics</a>
</li>
<li>
<a href="#notable-official-topics">Notable Official Topics</a>
</li>
<li>
<a href="#issue-table">Issue Table</a>
<ul>
<li>
<a href="#opened">Opened</a>
</li>
<li>
<a href="#closed">Closed</a>
</li>
</ul>
</li>
</ul>
</article>
<article id="about">
<h2>About</h2>
<p>The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made.
Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and
closed in that month, along with some interesting statistics so you can get a look into the development
process and a quick grasp of anything you may have missed.</p>
</article>
<article id="feedback">
<h2>Feedback</h2>
<p>If anything is incorrect or you have anything that you'd like to see changed or added please
<a href="https://gitlab.com/Bauke/tildes-issue-log/issues">open an issue</a>,
<a href="https://tildes.net/user/Bauke/new_message">PM me</a>
or comment on the posted topic on Tildes.</p>
<p>If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like
Tildes, this will remain entirely open-source.</p>
</article>
<article id="highlights">
<h2>Highlights</h2>
<h3 id="search-tags">Search Tags</h3>
<p>On the 16th, search was expanded to also include tags in the results so you can find that one obscure topic
a little faster. You can find
<a href="https://tildes.net/~tildes.official/7j9">the official topic here</a>.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-10-27</p>
</details>
<h3 id="brave-donations">Brave Donations</h3>
<p>On the 25th, Tildes got the ability for users to donate via
<a href="https://basicattentiontoken.org/">Brave's BAT system</a>,
if you don't know what it is I recommend reading
<a href="https://basicattentiontoken.org/faq/#meaning">their FAQ</a>
and the comments
<a href="https://tildes.net/~tildes.official/7vm">on the announcement topic</a>.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-10-29</p>
</details>
<h3 id="six-months">Six-Month Anniversary</h3>
<p>On the 26th, Tildes became 6 months old. And
<a href="https://tildes.net/~tildes/7x5">a new demographics survey, the "Year 0.5 Survey,"</a>
popped up from user
<a href="https://tildes.net/user/Kat">@Kat</a>. So if you haven't already (and the survey is still open),
fill it out! Remember that you can skip any questions you don't want to answer.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-10-31</p>
</details>
<h3 id="bookmarks">Bookmarks</h3>
<p>And finally,
<a href="https://i.imgur.com/YZJt8WD.gif">on the spookiest day of the month</a>
a long-awaited feature,
<a href="https://tildes.net/~tildes.official/83l">"Bookmarking" was added</a>! Another open-source
contribution, once again by
<a href="https://tildes.net/user/what">@what</a>. A merge request that's been in the works
<a href="https://gitlab.com/tildes/tildes/merge_requests/27">for 2 months</a>!</p>
<p>You can bookmark any topics and comments you like and they will show up on a new user page
<a href="https://tildes.net/bookmarks">called Bookmarks</a>, which you can find in the sidebar on your
profile, just above your invites.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-10-31</p>
</details>
</article>
<article id="statistics">
<h2>Statistics</h2>
<p>In the month of October 39 issues were opened and 24 issues were closed.</p>
<p>An average of 1.30 issues were opened and 0.80 issues were closed each day.</p>
<p>The average time to close issues was 60.40 days or 1449.64 hours.</p>
<p>Top 3 issue creators:</p>
<ol>
<li>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=Deimorz">10 issues created</a>.</li>
<li>
<a href="https://gitlab.com/Bauke">Bauke</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=Bauke">7 issues created</a>.</li>
<li>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=cfabbro">7 issues created</a>.</li>
</ol>
<p>Amount of labels assigned to currently open issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=bug">bug</a>:
6 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=code">code</a>:
6 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=design">design</a>:
3 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=feature">feature</a>:
3 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=investigate">investigate</a>:
5 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=suggestion">suggestion</a>:
11 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=tweak">tweak</a>:
5 times.</li>
</ul>
<p>Amount of labels assigned to closed issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=bug">bug</a>:
9 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=design">design</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=feature">feature</a>:
3 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=high+priority">high
priority</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=in+progress">in
progress</a>:
12 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=investigate">investigate</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=tweak">tweak</a>:
8 times.</li>
</ul>
</article>
<article id="notable-official-topics">
<h2>Notable Official Topics</h2>
<table>
<thead>
<tr>
<td>Date</td>
<td>Title</td>
<td>URL</td>
</tr>
</thead>
<tbody>
<tr>
<td>2018-10-12</td>
<td>General Tildes feedback, questions, and so on</td>
<td>
<a href="https://tildes.net/~tildes.official/7f3">Click</a>
</td>
</tr>
<tr>
<td>2018-10-22</td>
<td>Help/input wanted on a couple of updates</td>
<td>
<a href="https://tildes.net/~tildes.official/7rd">Click</a>
</td>
</tr>
</tbody>
</table>
</article>
<article id="issue-table">
<h2>Issue Table</h2>
<h3 id="opened">Opened</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/274">274</a>
</td>
<td>Capital letters in ?tag= query results in no ma...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/01 00:06:08</td>
<td>2018/10/05 06:54:30</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/275">275</a>
</td>
<td>Change border-left color for linked comments to...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/01 15:52:26</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/276">276</a>
</td>
<td>Favicon downloader is creating duplicates</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/01 16:07:38</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/277">277</a>
</td>
<td>Discarded comment replies still trigger the "da...</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/10/01 23:49:58</td>
<td>2018/10/02 00:18:24</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/278">278</a>
</td>
<td>When I reply to a comment via the notifications...</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/10/02 00:46:52</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/279">279</a>
</td>
<td>Add Ubuntu theme</td>
<td>
<a href="https://gitlab.com/haykam">haykam</a>
</td>
<td>2018/10/03 00:37:41</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/280">280</a>
</td>
<td>Tags having no character limit causes overflow ...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/03 01:52:17</td>
<td>2018/10/10 22:49:20</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/281">281</a>
</td>
<td>If a user hasn't visited a topic comment sectio...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/03 04:58:07</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/282">282</a>
</td>
<td>Notify users when one of their comments has rec...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/03 06:01:41</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/283">283</a>
</td>
<td>Remove #-days requirement for labels (and possi...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/03 17:06:42</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/284">284</a>
</td>
<td>Linking to a child of a collapsed (e.g. noisy) ...</td>
<td>
<a href="https://gitlab.com/tvfj">tvfj</a>
</td>
<td>2018/10/04 07:48:55</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/285">285</a>
</td>
<td>YouTube metadata related suggestions</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/04 14:12:13</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/286">286</a>
</td>
<td>Add link for (domainname) in the topic header t...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/04 14:15:33</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/287">287</a>
</td>
<td>Disable autocomplete on MFA code text field whe...</td>
<td>
<a href="https://gitlab.com/jaredmcateer">jaredmcateer</a>
</td>
<td>2018/10/04 23:40:33</td>
<td>2018/10/05 03:19:17</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/288">288</a>
</td>
<td>Labelling a comment that's been deleted throws ...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/05 17:06:01</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/289">289</a>
</td>
<td>Change site-icons/favicon approach to not alway...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/08 00:10:07</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/290">290</a>
</td>
<td>Large exemplary label message causes the label ...</td>
<td>
<a href="https://gitlab.com/SoptikHa2">SoptikHa2</a>
</td>
<td>2018/10/09 21:52:30</td>
<td>2018/10/27 00:29:43</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/291">291</a>
</td>
<td>Image bug with topic icons</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/10 15:44:58</td>
<td>2018/10/10 21:25:27</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/292">292</a>
</td>
<td>Hide topic-comments section when there's no com...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/10 23:22:39</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/293">293</a>
</td>
<td>Make the donate page link more prominent on the...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/11 21:07:58</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/294">294</a>
</td>
<td>When linking to search results and ?tag=, users...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/13 05:05:14</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/295">295</a>
</td>
<td>Make "invalid tags" error message more informat...</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/10/14 18:25:45</td>
<td>2018/10/14 23:50:20</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/296">296</a>
</td>
<td>The left border should update immediately after...</td>
<td>
<a href="https://gitlab.com/smoores">smoores</a>
</td>
<td>2018/10/15 23:39:22</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/297">297</a>
</td>
<td>Add "final" mypy annotations</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/16 00:04:06</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/298">298</a>
</td>
<td>Improve how posts are saved by Kindle extension</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/17 20:18:38</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/299">299</a>
</td>
<td>cmark-gfm archive SHA256 hash is incorrect, cau...</td>
<td>
<a href="https://gitlab.com/talklittle">talklittle</a>
</td>
<td>2018/10/17 21:55:18</td>
<td>2018/10/17 22:22:00</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/300">300</a>
</td>
<td>Validate HTML of pages with webtests</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/17 23:24:53</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/301">301</a>
</td>
<td>Upgrade Redis to 5.0</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/19 00:45:14</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/302">302</a>
</td>
<td>Upgrade PostgreSQL to 11</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/19 00:49:56</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/303">303</a>
</td>
<td>Investigate replacing rabbitmq with Redis streams</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/19 01:21:23</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/304">304</a>
</td>
<td>Feature Request: SQRL authentication</td>
<td>
<a href="https://gitlab.com/alex9099">alex9099</a>
</td>
<td>2018/10/22 11:11:19</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/305">305</a>
</td>
<td>Official Twitter account?</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/10/22 21:45:01</td>
<td>2018/10/22 21:46:57</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/306">306</a>
</td>
<td>"Set as account default" button disappears afte...</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/10/22 23:02:32</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/307">307</a>
</td>
<td>Enable automatic light/dark theme switching bas...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/25 22:48:19</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/308">308</a>
</td>
<td>Add the ability to publish a topic later</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/10/27 20:40:27</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/309">309</a>
</td>
<td>New Topic View - Make title input multiline - t...</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/10/29 06:57:07</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/310">310</a>
</td>
<td>IDNA URLs are not supported</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/10/30 12:01:19</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/311">311</a>
</td>
<td>Replace javascript prompts for exemplary/malice...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/31 08:36:11</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/312">312</a>
</td>
<td>Add pagination for bookmarks pages</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/10/31 22:40:01</td>
<td> </td>
</tr>
</tbody>
</table>
<h3 id="closed">Closed</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/7">7</a>
</td>
<td>automatically inserting close tags after non-va...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/04/29 22:05:17</td>
<td>2018/10/29 20:32:25</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/33">33</a>
</td>
<td>New comment rendering location</td>
<td>
<a href="https://gitlab.com/g4nym3de">g4nym3de</a>
</td>
<td>2018/05/21 21:29:39</td>
<td>2018/10/12 15:23:20</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/60">60</a>
</td>
<td>research trello/gitlab integration/sync options</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/05/25 19:15:48</td>
<td>2018/10/09 22:49:17</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/94">94</a>
</td>
<td>add 'save' functionality</td>
<td>
<a href="https://gitlab.com/xiretza">xiretza</a>
</td>
<td>2018/05/31 15:27:48</td>
<td>2018/10/31 21:28:09</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/116">116</a>
</td>
<td>Clicking 'tag' multiple times opens multiple in...</td>
<td>
<a href="https://gitlab.com/lpopesco">lpopesco</a>
</td>
<td>2018/06/08 17:03:55</td>
<td>2018/10/07 23:52:03</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/133">133</a>
</td>
<td>Period-separated string is automatically parsed...</td>
<td>
<a href="https://gitlab.com/sidmani">sidmani</a>
</td>
<td>2018/06/14 20:19:16</td>
<td>2018/10/07 14:29:47</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/135">135</a>
</td>
<td>Add reference on the password recovery settings...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/06/15 06:42:01</td>
<td>2018/10/05 03:32:29</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/139">139</a>
</td>
<td>Put comments and replies into nested lists in H...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/06/16 21:38:28</td>
<td>2018/10/10 22:26:32</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/144">144</a>
</td>
<td>More favicons for site-topic</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/06/25 13:52:59</td>
<td>2018/10/07 13:34:41</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/171">171</a>
</td>
<td>Fix/re-enable scraper for link topic favicons</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/07/23 23:06:49</td>
<td>2018/10/01 07:39:36</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/193">193</a>
</td>
<td>General theme overhaul</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/08/06 21:22:17</td>
<td>2018/10/22 21:37:16</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/230">230</a>
</td>
<td>Clicking the vote button allows you to open mul...</td>
<td>
<a href="https://gitlab.com/tmkv">tmkv</a>
</td>
<td>2018/08/22 03:30:59</td>
<td>2018/10/07 23:52:15</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/247">247</a>
</td>
<td>Make "spoiler" tag synonymous with "spoilers"</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/09/04 14:41:14</td>
<td>2018/10/05 07:27:48</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/269">269</a>
</td>
<td>Add pagination for previously read notifications</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/28 04:29:28</td>
<td>2018/10/03 02:34:27</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/270">270</a>
</td>
<td>"Collapse old comments" isn't affecting deleted...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/28 08:50:49</td>
<td>2018/10/04 03:53:42</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/274">274</a>
</td>
<td>Capital letters in ?tag= query results in no ma...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/01 00:06:08</td>
<td>2018/10/05 06:54:30</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/277">277</a>
</td>
<td>Discarded comment replies still trigger the "da...</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/10/01 23:49:58</td>
<td>2018/10/02 00:18:24</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/280">280</a>
</td>
<td>Tags having no character limit causes overflow ...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/10/03 01:52:17</td>
<td>2018/10/10 22:49:20</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/287">287</a>
</td>
<td>Disable autocomplete on MFA code text field whe...</td>
<td>
<a href="https://gitlab.com/jaredmcateer">jaredmcateer</a>
</td>
<td>2018/10/04 23:40:33</td>
<td>2018/10/05 03:19:17</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/290">290</a>
</td>
<td>Large exemplary label message causes the label ...</td>
<td>
<a href="https://gitlab.com/SoptikHa2">SoptikHa2</a>
</td>
<td>2018/10/09 21:52:30</td>
<td>2018/10/27 00:29:43</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/291">291</a>
</td>
<td>Image bug with topic icons</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/10/10 15:44:58</td>
<td>2018/10/10 21:25:27</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/295">295</a>
</td>
<td>Make "invalid tags" error message more informat...</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/10/14 18:25:45</td>
<td>2018/10/14 23:50:20</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/299">299</a>
</td>
<td>cmark-gfm archive SHA256 hash is incorrect, cau...</td>
<td>
<a href="https://gitlab.com/talklittle">talklittle</a>
</td>
<td>2018/10/17 21:55:18</td>
<td>2018/10/17 22:22:00</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/305">305</a>
</td>
<td>Official Twitter account?</td>
<td>
<a href="https://gitlab.com/ainar-g">ainar-g</a>
</td>
<td>2018/10/22 21:45:01</td>
<td>2018/10/22 21:46:57</td>
</tr>
</tbody>
</table>
</article>
</section>
<footer id="footer">
<h3>
<a href="../index.html">Home</a>
</h3>
<h3>
<a href="#">To Top</a>
</h3>
<h3>
<a href="https://tildes.net">Tildes</a>
</h3>
<h3>Built with
<a href="https://gulpjs.com">Gulp</a>
and
<a href="https://sass-lang.com/">Sass</a>
</h3>
<h3>Colors from
<a href="https://draculatheme.com">Dracula</a>
</h3>
<h3>View the
<a href="https://gitlab.com/Bauke/tildes-issue-log">source</a>
</h3>
</footer>
</div>
</body>
</html>

View File

@ -1,678 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title October 2018
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 October 2018
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
ul
li: a(href="#search-tags") Search Tags
li: a(href="#brave-donations") Brave Donations
li: a(href="#six-months") Six-Month Anniversary
li: a(href="#bookmarks") Bookmarks
li: a(href="#statistics") Statistics
li: a(href="#notable-official-topics") Notable Official Topics
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
//- User written highlights of what happened with development and any notable changes, if applicable.
h3(id="search-tags") Search Tags
p On the 16th, search was expanded to also include tags in the results so you can find that one obscure topic a little faster. You can find
|
|
a(href="https://tildes.net/~tildes.official/7j9") the official topic here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-10-27
h3(id="brave-donations") Brave Donations
p On the 25th, Tildes got the ability for users to donate via
|
|
a(href="https://basicattentiontoken.org/") Brave's BAT system
| ,
| if you don't know what it is I recommend reading
|
a(href="https://basicattentiontoken.org/faq/#meaning") their FAQ
|
| and the comments
|
a(href="https://tildes.net/~tildes.official/7vm") on the announcement topic
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-10-29
h3(id="six-months") Six-Month Anniversary
p On the 26th, Tildes became 6 months old. And
|
|
a(href="https://tildes.net/~tildes/7x5") a new demographics survey, the "Year 0.5 Survey,"
|
| popped up from user
|
a(href="https://tildes.net/user/Kat") @Kat
| . So if you haven't already (and the survey is still open), fill it out! Remember that you can skip any questions you don't want to answer.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-10-31
h3(id="bookmarks") Bookmarks
p And finally,
|
|
a(href="https://i.imgur.com/YZJt8WD.gif") on the spookiest day of the month
|
| a long-awaited feature,
|
a(href="https://tildes.net/~tildes.official/83l") "Bookmarking" was added
| ! Another open-source contribution, once again by
|
a(href="https://tildes.net/user/what") @what
| . A merge request that's been in the works
|
a(href="https://gitlab.com/tildes/tildes/merge_requests/27") for 2 months
| !
p You can bookmark any topics and comments you like and they will show up on a new user page
|
|
a(href="https://tildes.net/bookmarks") called Bookmarks
| , which you can find in the sidebar on your profile, just above your invites.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-10-31
article(id="statistics")
h2 Statistics
p In the month of October 39 issues were opened and 24 issues were closed.
p An average of 1.30 issues were opened and 0.80 issues were closed each day.
p The average time to close issues was 60.40 days or 1449.64 hours.
p Top 3 issue creators:
ol
li
a(href="https://gitlab.com/Deimorz") Deimorz
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Deimorz") 10 issues created
| .
li
a(href="https://gitlab.com/Bauke") Bauke
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Bauke") 7 issues created
| .
li
a(href="https://gitlab.com/cfabbro") cfabbro
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=cfabbro") 7 issues created
| .
p Amount of labels assigned to currently open issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=bug") bug
| :
| 6 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=code") code
| :
| 6 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=design") design
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=feature") feature
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=investigate") investigate
| :
| 5 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=suggestion") suggestion
| :
| 11 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=tweak") tweak
| :
| 5 times.
p Amount of labels assigned to closed issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=bug") bug
| :
| 9 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=design") design
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=feature") feature
| :
| 3 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=high+priority") high priority
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=in+progress") in progress
| :
| 12 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=investigate") investigate
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=tweak") tweak
| :
| 8 times.
article(id="notable-official-topics")
h2 Notable Official Topics
table
thead
tr
td Date
td Title
td URL
tbody
tr
td 2018-10-12
td General Tildes feedback, questions, and so on
td: a(href="https://tildes.net/~tildes.official/7f3") Click
tr
td 2018-10-22
td Help/input wanted on a couple of updates
td: a(href="https://tildes.net/~tildes.official/7rd") Click
article(id="issue-table")
h2 Issue Table
h3(id="opened") Opened
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/274") 274
td Capital letters in ?tag= query results in no ma...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/01 00:06:08
td 2018/10/05 06:54:30
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/275") 275
td Change border-left color for linked comments to...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/01 15:52:26
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/276") 276
td Favicon downloader is creating duplicates
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/01 16:07:38
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/277") 277
td Discarded comment replies still trigger the "da...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/10/01 23:49:58
td 2018/10/02 00:18:24
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/278") 278
td When I reply to a comment via the notifications...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/10/02 00:46:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/279") 279
td Add Ubuntu theme
td: a(href="https://gitlab.com/haykam") haykam
td 2018/10/03 00:37:41
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/280") 280
td Tags having no character limit causes overflow ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/03 01:52:17
td 2018/10/10 22:49:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/281") 281
td If a user hasn't visited a topic comment sectio...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/03 04:58:07
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/282") 282
td Notify users when one of their comments has rec...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/03 06:01:41
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/283") 283
td Remove #-days requirement for labels (and possi...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/03 17:06:42
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/284") 284
td Linking to a child of a collapsed (e.g. noisy) ...
td: a(href="https://gitlab.com/tvfj") tvfj
td 2018/10/04 07:48:55
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/285") 285
td YouTube metadata related suggestions
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/04 14:12:13
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/286") 286
td Add link for (domainname) in the topic header t...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/04 14:15:33
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/287") 287
td Disable autocomplete on MFA code text field whe...
td: a(href="https://gitlab.com/jaredmcateer") jaredmcateer
td 2018/10/04 23:40:33
td 2018/10/05 03:19:17
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/288") 288
td Labelling a comment that's been deleted throws ...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/05 17:06:01
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/289") 289
td Change site-icons/favicon approach to not alway...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/08 00:10:07
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/290") 290
td Large exemplary label message causes the label ...
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/10/09 21:52:30
td 2018/10/27 00:29:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/291") 291
td Image bug with topic icons
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/10 15:44:58
td 2018/10/10 21:25:27
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/292") 292
td Hide topic-comments section when there's no com...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/10 23:22:39
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/293") 293
td Make the donate page link more prominent on the...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/11 21:07:58
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/294") 294
td When linking to search results and ?tag=, users...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/13 05:05:14
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/295") 295
td Make "invalid tags" error message more informat...
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/10/14 18:25:45
td 2018/10/14 23:50:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/296") 296
td The left border should update immediately after...
td: a(href="https://gitlab.com/smoores") smoores
td 2018/10/15 23:39:22
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/297") 297
td Add "final" mypy annotations
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/16 00:04:06
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/298") 298
td Improve how posts are saved by Kindle extension
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/17 20:18:38
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/299") 299
td cmark-gfm archive SHA256 hash is incorrect, cau...
td: a(href="https://gitlab.com/talklittle") talklittle
td 2018/10/17 21:55:18
td 2018/10/17 22:22:00
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/300") 300
td Validate HTML of pages with webtests
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/17 23:24:53
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/301") 301
td Upgrade Redis to 5.0
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/19 00:45:14
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/302") 302
td Upgrade PostgreSQL to 11
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/19 00:49:56
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/303") 303
td Investigate replacing rabbitmq with Redis streams
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/19 01:21:23
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/304") 304
td Feature Request: SQRL authentication
td: a(href="https://gitlab.com/alex9099") alex9099
td 2018/10/22 11:11:19
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/305") 305
td Official Twitter account?
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/10/22 21:45:01
td 2018/10/22 21:46:57
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/306") 306
td "Set as account default" button disappears afte...
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/10/22 23:02:32
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/307") 307
td Enable automatic light/dark theme switching bas...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/25 22:48:19
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/308") 308
td Add the ability to publish a topic later
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/10/27 20:40:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/309") 309
td New Topic View - Make title input multiline - t...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/10/29 06:57:07
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/310") 310
td IDNA URLs are not supported
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/10/30 12:01:19
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/311") 311
td Replace javascript prompts for exemplary/malice...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/31 08:36:11
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/312") 312
td Add pagination for bookmarks pages
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/10/31 22:40:01
td
h3(id="closed") Closed
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/7") 7
td automatically inserting close tags after non-va...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/04/29 22:05:17
td 2018/10/29 20:32:25
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/33") 33
td New comment rendering location
td: a(href="https://gitlab.com/g4nym3de") g4nym3de
td 2018/05/21 21:29:39
td 2018/10/12 15:23:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/60") 60
td research trello/gitlab integration/sync options
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/05/25 19:15:48
td 2018/10/09 22:49:17
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/94") 94
td add 'save' functionality
td: a(href="https://gitlab.com/xiretza") xiretza
td 2018/05/31 15:27:48
td 2018/10/31 21:28:09
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/116") 116
td Clicking 'tag' multiple times opens multiple in...
td: a(href="https://gitlab.com/lpopesco") lpopesco
td 2018/06/08 17:03:55
td 2018/10/07 23:52:03
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/133") 133
td Period-separated string is automatically parsed...
td: a(href="https://gitlab.com/sidmani") sidmani
td 2018/06/14 20:19:16
td 2018/10/07 14:29:47
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/135") 135
td Add reference on the password recovery settings...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/06/15 06:42:01
td 2018/10/05 03:32:29
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/139") 139
td Put comments and replies into nested lists in H...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/16 21:38:28
td 2018/10/10 22:26:32
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/144") 144
td More favicons for site-topic
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/06/25 13:52:59
td 2018/10/07 13:34:41
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/171") 171
td Fix/re-enable scraper for link topic favicons
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/07/23 23:06:49
td 2018/10/01 07:39:36
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/193") 193
td General theme overhaul
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/08/06 21:22:17
td 2018/10/22 21:37:16
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/230") 230
td Clicking the vote button allows you to open mul...
td: a(href="https://gitlab.com/tmkv") tmkv
td 2018/08/22 03:30:59
td 2018/10/07 23:52:15
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/247") 247
td Make "spoiler" tag synonymous with "spoilers"
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/09/04 14:41:14
td 2018/10/05 07:27:48
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/269") 269
td Add pagination for previously read notifications
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/28 04:29:28
td 2018/10/03 02:34:27
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/270") 270
td "Collapse old comments" isn't affecting deleted...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/28 08:50:49
td 2018/10/04 03:53:42
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/274") 274
td Capital letters in ?tag= query results in no ma...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/01 00:06:08
td 2018/10/05 06:54:30
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/277") 277
td Discarded comment replies still trigger the "da...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/10/01 23:49:58
td 2018/10/02 00:18:24
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/280") 280
td Tags having no character limit causes overflow ...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/10/03 01:52:17
td 2018/10/10 22:49:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/287") 287
td Disable autocomplete on MFA code text field whe...
td: a(href="https://gitlab.com/jaredmcateer") jaredmcateer
td 2018/10/04 23:40:33
td 2018/10/05 03:19:17
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/290") 290
td Large exemplary label message causes the label ...
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/10/09 21:52:30
td 2018/10/27 00:29:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/291") 291
td Image bug with topic icons
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/10/10 15:44:58
td 2018/10/10 21:25:27
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/295") 295
td Make "invalid tags" error message more informat...
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/10/14 18:25:45
td 2018/10/14 23:50:20
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/299") 299
td cmark-gfm archive SHA256 hash is incorrect, cau...
td: a(href="https://gitlab.com/talklittle") talklittle
td 2018/10/17 21:55:18
td 2018/10/17 22:22:00
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/305") 305
td Official Twitter account?
td: a(href="https://gitlab.com/ainar-g") ainar-g
td 2018/10/22 21:45:01
td 2018/10/22 21:46:57
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

View File

@ -0,0 +1,841 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>September 2018</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/post.css">
<!-- NOTE: favicons are under "src/favicons" but in "public/" for build -->
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
<link rel="manifest" href="../site.webmanifest">
<link rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36">
<link rel="shortcut icon" href="../favicon.ico">
<meta name="msapplication-TileColor" content="#282a36">
<meta name="msapplication-config" content="../browserconfig.xml">
<meta name="theme-color" content="#282a36">
</head>
<body>
<div id="wrapper">
<h1>September 2018</h1>
<section id="post">
<article id="toc">
<h2>Table Of Contents</h2>
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#feedback">Feedback</a>
</li>
<li>
<a href="#highlights">Highlights</a>
<ul>
<li>
<a href="#comment-labels">Comment Tag... Labels!</a>
</li>
<li>
<a href="#scraping-data">Scraping Data</a>
</li>
<li>
<a href="#syntax-highlighting">Syntax Highlighting</a>
</li>
</ul>
</li>
<li>
<a href="#statistics">Statistics</a>
</li>
<li>
<a href="#notable-official-topics">Notable Official Topics</a>
</li>
<li>
<a href="#issue-table">Issue Table</a>
<ul>
<li>
<a href="#opened">Opened</a>
</li>
<li>
<a href="#closed">Closed</a>
</li>
</ul>
</li>
</ul>
</article>
<article id="about">
<h2>About</h2>
<p>The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made.
Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and
closed in that month, along with some interesting statistics so you can get a look into the development
process and a quick grasp of anything you may have missed.</p>
</article>
<article id="feedback">
<h2>Feedback</h2>
<p>If anything is incorrect or you have anything that you'd like to see changed or added please
<a href="https://gitlab.com/Bauke/tildes-issue-log/issues">open an issue</a>,
<a href="https://tildes.net/user/Bauke/new_message">PM me</a>
or comment on the posted topic on Tildes.</p>
<p>If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like
Tildes, this will remain entirely open-source.</p>
</article>
<article id="highlights">
<h2>Highlights</h2>
<h3 id="comment-labels">Comment Tag... Labels!</h3>
<p>Early on in September,
<a href="https://tildes.net/~tildes.official/63s">comment tags</a>
were re-enabled. Primarily for experimentation and to see how people would use them. During the coming 10
days, comment tags received a few changes here and there to see what works and what doesn't. Eventually
leading up to
<a href="https://tildes.net/~tildes.official/6hn">the introduction of the "relevance" comment sort order</a>.</p>
<p>The relevance sort order was made the default and it's basically the "most votes" order however the comment
tags also affect a comment's placement. So if people tagged your comment as "noise" it would become
automatically collapsed, off-topic will be lowered compared to on-topic comments, etc.</p>
<p>Then, after another number of days,
<a href="https://tildes.net/~tildes.official/6ue">comment tags were renamed to labels</a>.
As well as a number of other changes and even a new, positive comment label entirely. Definitely a topic to
read if you haven't already.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-09-28</p>
</details>
<h3 id="scraping-data">Scraping Data</h3>
<p>On the 11th,
<a href="https://tildes.net/~tildes.official/696">scraping data was added</a>
using
<a href="https://embed.ly/extract">Embedly's "Extract" API</a>.
A plethora of things can be done with it but for now there's only been a handful of additions. Namely,
embedding a tweet's content in a topic and showing the published date of an article if the article is 3 days
older than the topic.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-09-28</p>
</details>
<h3 id="syntax-highlighting">Syntax Highlighting</h3>
<p>On the 21st,
<a href="https://tildes.net/user/Soptik">@Soptik</a>'s
syntax highlighting contribution was implemented and will be a great addition to the style of the site.
Especially over in
<a href="https://tildes.net/~comp">~comp</a>.</p>
<p>You can find
<a href="https://gitlab.com/tildes/tildes/merge_requests/31">the merge request here</a>
and
<a href="https://tildes.net/~tildes.official/6o6">the announcement topic here</a>.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-09-28</p>
</details>
<article id="statistics">
<h2>Statistics</h2>
<p>In the month of September 31 issues were opened and 16 issues were closed.</p>
<p>An average of 1.03 issues were opened and 0.53 issues were closed each day.</p>
<p>The average time to close issues was 25.74 days or 617.69 hours.</p>
<p>Top 3 issue creators:</p>
<ol>
<li>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=Deimorz">6 issues created</a>.</li>
<li>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=cfabbro">5 issues created</a>.</li>
<li>
<a href="https://gitlab.com/Bauke">Bauke</a>
with
<a href="https://gitlab.com/tildes/tildes/issues?state=all&amp;author_username=Bauke">5 issues created</a>.</li>
</ol>
<p>Amount of labels assigned to currently open issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=bug">bug</a>:
4 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=code">code</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=feature">feature</a>:
4 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=high+priority">high
priority</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=investigate">investigate</a>:
7 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=suggestion">suggestion</a>:
8 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=opened&amp;label_name%5B%5D=tweak">tweak</a>:
2 times.</li>
</ul>
<p>Amount of labels assigned to closed issues:</p>
<ul>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=bug">bug</a>:
6 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=code">code</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=design">design</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=feature">feature</a>:
2 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=high+priority">high
priority</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=in+progress">in
progress</a>:
5 times.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=investigate">investigate</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=suggestion">suggestion</a>:
1 time.</li>
<li>
<a href="https://gitlab.com/tildes/tildes/issues?state=closed&amp;label_name%5B%5D=tweak">tweak</a>:
1 time.</li>
</ul>
</article>
</article>
<article id="notable-official-topics">
<h2>Notable Official Topics</h2>
<table>
<thead>
<tr>
<td>Date</td>
<td>Title</td>
<td>URL</td>
</tr>
</thead>
<tbody>
<tr>
<td>2018-09-07</td>
<td>Comment tags have been re-enabled to experiment with, input wanted on plans.</td>
<td>
<a href="https://tildes.net/~tildes.official/63s">Click</a>
</td>
</tr>
<tr>
<td>2018-09-11</td>
<td>Starting to experiment a little with using data scraped from the destination of link topics.</td>
<td>
<a href="https://tildes.net/~tildes.official/696">Click</a>
</td>
</tr>
<tr>
<td>2018-09-17</td>
<td>Comment tags now affect sorting, more changes coming.</td>
<td>
<a href="https://tildes.net/~tildes.official/6hn">Click</a>
</td>
</tr>
<tr>
<td>2018-09-21</td>
<td>Syntax highlighting for the coders, invites for everyone.</td>
<td>
<a href="https://tildes.net/~tildes.official/6o6">Click</a>
</td>
</tr>
<tr>
<td>2018-09-26</td>
<td>Many updates to The Feature Formerly Known as Comment Tagging.</td>
<td>
<a href="https://tildes.net/~tildes.official/6ue">Click</a>
</td>
</tr>
</tbody>
</table>
</article>
<article id="issue-table">
<h2>Issue Table</h2>
<h3 id="opened">Opened</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/243">243</a>
</td>
<td>Strange doubling up of topic summary text on Mi...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/09/01 21:56:52</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/244">244</a>
</td>
<td>Make Tildes Apple Mobile Web App Capable</td>
<td>
<a href="https://gitlab.com/smoores">smoores</a>
</td>
<td>2018/09/02 22:29:16</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/245">245</a>
</td>
<td>Internal Server Error for only 2 text posts by ...</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/09/04 01:20:43</td>
<td>2018/09/04 01:31:23</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/246">246</a>
</td>
<td>period_string in topic_list.jinja2 doesn't appe...</td>
<td>
<a href="https://gitlab.com/jms301">jms301</a>
</td>
<td>2018/09/04 12:36:20</td>
<td>2018/09/04 19:49:18</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/247">247</a>
</td>
<td>Make "spoiler" tag synonymous with "spoilers"</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/09/04 14:41:14</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/248">248</a>
</td>
<td>Jumping to comment via link with anchor doesn't...</td>
<td>
<a href="https://gitlab.com/SoptikHa2">SoptikHa2</a>
</td>
<td>2018/09/04 21:50:48</td>
<td>2018/09/04 22:10:10</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/249">249</a>
</td>
<td>Update Python to 3.7</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/05 20:23:05</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/250">250</a>
</td>
<td>when making a new comment it counts as new when...</td>
<td>
<a href="https://gitlab.com/alex9099">alex9099</a>
</td>
<td>2018/09/06 15:38:45</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/251">251</a>
</td>
<td>Keyboard navigation</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/09/06 23:27:16</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/252">252</a>
</td>
<td>Expand comments when being linked to them</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/09/10 17:07:03</td>
<td>2018/09/10 18:33:34</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/253">253</a>
</td>
<td>Text Topic Word Count is broken</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/09/11 12:42:48</td>
<td>2018/09/11 20:49:36</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/254">254</a>
</td>
<td>Comment tag menu stays visible even after colla...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/09/12 15:18:51</td>
<td>2018/09/17 20:47:01</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/255">255</a>
</td>
<td>Add ability to "log out all devices"</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/12 19:44:22</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/256">256</a>
</td>
<td>Change comment permalinks from anchors to a sep...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/13 02:25:52</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/257">257</a>
</td>
<td>Add custom styling to `loud` tag.</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/09/13 22:37:46</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/258">258</a>
</td>
<td>Automatically collapse removed comment threads</td>
<td>
<a href="https://gitlab.com/Crestwave">Crestwave</a>
</td>
<td>2018/09/15 10:55:27</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/259">259</a>
</td>
<td>Add option to collapse code blocks</td>
<td>
<a href="https://gitlab.com/SoptikHa2">SoptikHa2</a>
</td>
<td>2018/09/16 19:48:04</td>
<td>2018/09/16 21:54:38</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/260">260</a>
</td>
<td>All comments become collapsed when a top-level ...</td>
<td>
<a href="https://gitlab.com/talklittle">talklittle</a>
</td>
<td>2018/09/16 22:25:38</td>
<td>2018/09/21 00:46:02</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/261">261</a>
</td>
<td>Prevent the user from replying directly to thei...</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/09/20 02:59:35</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/262">262</a>
</td>
<td>Replying and voting without JavaScript</td>
<td>
<a href="https://gitlab.com/TrashMacNugget">TrashMacNugget</a>
</td>
<td>2018/09/23 03:22:28</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/263">263</a>
</td>
<td>Embed support for images and videos</td>
<td>
<a href="https://gitlab.com/dcelasun">dcelasun</a>
</td>
<td>2018/09/25 21:54:55</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/264">264</a>
</td>
<td>Show if a user is banned on their profile</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/09/26 19:10:08</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/265">265</a>
</td>
<td>Suggestion: Community based thread locking</td>
<td>
<a href="https://gitlab.com/ducksduck">ducksduck</a>
</td>
<td>2018/09/27 16:37:17</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/266">266</a>
</td>
<td>Show comment's "total score" or weighted value ...</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/09/27 22:29:44</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/267">267</a>
</td>
<td>label section does not wrap in Firefox Mobile</td>
<td>
<a href="https://gitlab.com/firstakir">firstakir</a>
</td>
<td>2018/09/28 03:16:45</td>
<td>2018/09/29 01:58:01</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/268">268</a>
</td>
<td>Tags are not clickable on search results page o...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/28 04:27:31</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/269">269</a>
</td>
<td>Add pagination for previously read notifications</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/28 04:29:28</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/270">270</a>
</td>
<td>"Collapse old comments" isn't affecting deleted...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/09/28 08:50:49</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/271">271</a>
</td>
<td>@username mentions triggering in code blocks</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/09/29 01:25:43</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/272">272</a>
</td>
<td>Add some sort of "related links" feature to top...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/09/29 01:27:24</td>
<td> </td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/273">273</a>
</td>
<td>Bug in marking new comments?</td>
<td>
<a href="https://gitlab.com/apoctr">apoctr</a>
</td>
<td>2018/09/30 12:38:39</td>
<td>2018/09/30 23:00:27</td>
</tr>
</tbody>
</table>
<h3 id="closed">Closed</h3>
<table>
<thead>
<tr>
<td>Issue</td>
<td>Title</td>
<td>Author</td>
<td>Opened</td>
<td>Closed</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/78">78</a>
</td>
<td>Syntax highlighting in markdown code blocks</td>
<td>
<a href="https://gitlab.com/SoptikHa2">SoptikHa2</a>
</td>
<td>2018/05/27 16:45:59</td>
<td>2018/09/21 21:29:37</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/114">114</a>
</td>
<td>Message inbox doesn't sort one-message conversa...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/06/07 19:51:26</td>
<td>2018/09/06 01:35:02</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/145">145</a>
</td>
<td>Topic tag filters are not filtering out "descen...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/06/25 22:13:02</td>
<td>2018/09/08 04:04:43</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/154">154</a>
</td>
<td>Add pagination to users viewing their own profile</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/07/12 16:44:20</td>
<td>2018/09/01 01:27:07</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/161">161</a>
</td>
<td>Include licensing and copyright info in source ...</td>
<td>
<a href="https://gitlab.com/hook">hook</a>
</td>
<td>2018/07/18 12:22:35</td>
<td>2018/09/05 20:45:24</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/218">218</a>
</td>
<td>2FA needs to display the authenticator key in a...</td>
<td>
<a href="https://gitlab.com/Deimorz">Deimorz</a>
</td>
<td>2018/08/17 23:17:39</td>
<td>2018/09/05 20:44:26</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/245">245</a>
</td>
<td>Internal Server Error for only 2 text posts by ...</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/09/04 01:20:43</td>
<td>2018/09/04 01:31:23</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/246">246</a>
</td>
<td>period_string in topic_list.jinja2 doesn't appe...</td>
<td>
<a href="https://gitlab.com/jms301">jms301</a>
</td>
<td>2018/09/04 12:36:20</td>
<td>2018/09/04 19:49:18</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/248">248</a>
</td>
<td>Jumping to comment via link with anchor doesn't...</td>
<td>
<a href="https://gitlab.com/SoptikHa2">SoptikHa2</a>
</td>
<td>2018/09/04 21:50:48</td>
<td>2018/09/04 22:10:10</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/252">252</a>
</td>
<td>Expand comments when being linked to them</td>
<td>
<a href="https://gitlab.com/Bauke">Bauke</a>
</td>
<td>2018/09/10 17:07:03</td>
<td>2018/09/10 18:33:34</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/253">253</a>
</td>
<td>Text Topic Word Count is broken</td>
<td>
<a href="https://gitlab.com/AdamsT">AdamsT</a>
</td>
<td>2018/09/11 12:42:48</td>
<td>2018/09/11 20:49:36</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/254">254</a>
</td>
<td>Comment tag menu stays visible even after colla...</td>
<td>
<a href="https://gitlab.com/cfabbro">cfabbro</a>
</td>
<td>2018/09/12 15:18:51</td>
<td>2018/09/17 20:47:01</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/259">259</a>
</td>
<td>Add option to collapse code blocks</td>
<td>
<a href="https://gitlab.com/SoptikHa2">SoptikHa2</a>
</td>
<td>2018/09/16 19:48:04</td>
<td>2018/09/16 21:54:38</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/260">260</a>
</td>
<td>All comments become collapsed when a top-level ...</td>
<td>
<a href="https://gitlab.com/talklittle">talklittle</a>
</td>
<td>2018/09/16 22:25:38</td>
<td>2018/09/21 00:46:02</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/267">267</a>
</td>
<td>label section does not wrap in Firefox Mobile</td>
<td>
<a href="https://gitlab.com/firstakir">firstakir</a>
</td>
<td>2018/09/28 03:16:45</td>
<td>2018/09/29 01:58:01</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/tildes/tildes/issues/273">273</a>
</td>
<td>Bug in marking new comments?</td>
<td>
<a href="https://gitlab.com/apoctr">apoctr</a>
</td>
<td>2018/09/30 12:38:39</td>
<td>2018/09/30 23:00:27</td>
</tr>
</tbody>
</table>
</article>
</section>
<footer id="footer">
<h3>
<a href="../index.html">Home</a>
</h3>
<h3>
<a href="#">To Top</a>
</h3>
<h3>
<a href="https://tildes.net">Tildes</a>
</h3>
<h3>Built with
<a href="https://gulpjs.com">Gulp</a>
and
<a href="https://sass-lang.com/">Sass</a>
</h3>
<h3>Colors from
<a href="https://draculatheme.com">Dracula</a>
</h3>
<h3>View the
<a href="https://gitlab.com/Bauke/tildes-issue-log">source</a>
</h3>
</footer>
</div>
</body>
</html>

View File

@ -1,590 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title September 2018
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 September 2018
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
ul
li: a(href="#comment-labels") Comment Tag... Labels!
li: a(href="#scraping-data") Scraping Data
li: a(href="#syntax-highlighting") Syntax Highlighting
li: a(href="#statistics") Statistics
li: a(href="#notable-official-topics") Notable Official Topics
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
h3(id="comment-labels") Comment Tag... Labels!
p Early on in September,
|
|
a(href="https://tildes.net/~tildes.official/63s") comment tags
|
| were re-enabled. Primarily for experimentation and to see how people would use them. During the coming 10 days, comment tags received a few changes here and there to see what works and what doesn't. Eventually leading up to
|
a(href="https://tildes.net/~tildes.official/6hn") the introduction of the "relevance" comment sort order
| .
p The relevance sort order was made the default and it's basically the "most votes" order however the comment tags also affect a comment's placement. So if people tagged your comment as "noise" it would become automatically collapsed, off-topic will be lowered compared to on-topic comments, etc.
p Then, after another number of days,
|
|
a(href="https://tildes.net/~tildes.official/6ue") comment tags were renamed to labels
| .
| As well as a number of other changes and even a new, positive comment label entirely. Definitely a topic to read if you haven't already.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-09-28
h3(id="scraping-data") Scraping Data
p On the 11th,
|
|
a(href="https://tildes.net/~tildes.official/696") scraping data was added
|
| using
|
a(href="https://embed.ly/extract") Embedly's "Extract" API
| .
| A plethora of things can be done with it but for now there's only been a handful of additions. Namely, embedding a tweet's content in a topic and showing the published date of an article if the article is 3 days older than the topic.
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-09-28
h3(id="syntax-highlighting") Syntax Highlighting
p On the 21st,
|
|
a(href="https://tildes.net/user/Soptik") @Soptik
| 's
| syntax highlighting contribution was implemented and will be a great addition to the style of the site. Especially over in
|
a(href="https://tildes.net/~comp") ~comp
| .
p You can find
|
|
a(href="https://gitlab.com/tildes/tildes/merge_requests/31") the merge request here
|
| and
|
a(href="https://tildes.net/~tildes.official/6o6") the announcement topic here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-09-28
article(id="statistics")
h2 Statistics
p In the month of September 31 issues were opened and 16 issues were closed.
p An average of 1.03 issues were opened and 0.53 issues were closed each day.
p The average time to close issues was 25.74 days or 617.69 hours.
p Top 3 issue creators:
ol
li
a(href="https://gitlab.com/Deimorz") Deimorz
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Deimorz") 6 issues created
| .
li
a(href="https://gitlab.com/cfabbro") cfabbro
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=cfabbro") 5 issues created
| .
li
a(href="https://gitlab.com/Bauke") Bauke
|
| with
|
a(href="https://gitlab.com/tildes/tildes/issues?state=all&author_username=Bauke") 5 issues created
| .
p Amount of labels assigned to currently open issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=bug") bug
| :
| 4 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=code") code
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=feature") feature
| :
| 4 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=high+priority") high priority
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=investigate") investigate
| :
| 7 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=suggestion") suggestion
| :
| 8 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=opened&label_name%5B%5D=tweak") tweak
| :
| 2 times.
p Amount of labels assigned to closed issues:
ul
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=bug") bug
| :
| 6 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=code") code
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=design") design
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=feature") feature
| :
| 2 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=high+priority") high priority
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=in+progress") in progress
| :
| 5 times.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=investigate") investigate
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=suggestion") suggestion
| :
| 1 time.
li
a(href="https://gitlab.com/tildes/tildes/issues?state=closed&label_name%5B%5D=tweak") tweak
| :
| 1 time.
article(id="notable-official-topics")
h2 Notable Official Topics
//- Table format should be like this:
table
thead
tr
td Date
td Title
td URL
tbody
tr
td 2018-09-07
td Comment tags have been re-enabled to experiment with, input wanted on plans.
td: a(href="https://tildes.net/~tildes.official/63s") Click
tr
td 2018-09-11
td Starting to experiment a little with using data scraped from the destination of link topics.
td: a(href="https://tildes.net/~tildes.official/696") Click
tr
td 2018-09-17
td Comment tags now affect sorting, more changes coming.
td: a(href="https://tildes.net/~tildes.official/6hn") Click
tr
td 2018-09-21
td Syntax highlighting for the coders, invites for everyone.
td: a(href="https://tildes.net/~tildes.official/6o6") Click
tr
td 2018-09-26
td Many updates to The Feature Formerly Known as Comment Tagging.
td: a(href="https://tildes.net/~tildes.official/6ue") Click
article(id="issue-table")
h2 Issue Table
h3(id="opened") Opened
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/243") 243
td Strange doubling up of topic summary text on Mi...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/09/01 21:56:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/244") 244
td Make Tildes Apple Mobile Web App Capable
td: a(href="https://gitlab.com/smoores") smoores
td 2018/09/02 22:29:16
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/245") 245
td Internal Server Error for only 2 text posts by ...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/09/04 01:20:43
td 2018/09/04 01:31:23
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/246") 246
td period_string in topic_list.jinja2 doesn't appe...
td: a(href="https://gitlab.com/jms301") jms301
td 2018/09/04 12:36:20
td 2018/09/04 19:49:18
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/247") 247
td Make "spoiler" tag synonymous with "spoilers"
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/09/04 14:41:14
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/248") 248
td Jumping to comment via link with anchor doesn't...
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/09/04 21:50:48
td 2018/09/04 22:10:10
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/249") 249
td Update Python to 3.7
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/05 20:23:05
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/250") 250
td when making a new comment it counts as new when...
td: a(href="https://gitlab.com/alex9099") alex9099
td 2018/09/06 15:38:45
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/251") 251
td Keyboard navigation
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/09/06 23:27:16
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/252") 252
td Expand comments when being linked to them
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/09/10 17:07:03
td 2018/09/10 18:33:34
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/253") 253
td Text Topic Word Count is broken
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/09/11 12:42:48
td 2018/09/11 20:49:36
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/254") 254
td Comment tag menu stays visible even after colla...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/09/12 15:18:51
td 2018/09/17 20:47:01
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/255") 255
td Add ability to "log out all devices"
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/12 19:44:22
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/256") 256
td Change comment permalinks from anchors to a sep...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/13 02:25:52
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/257") 257
td Add custom styling to `loud` tag.
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/09/13 22:37:46
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/258") 258
td Automatically collapse removed comment threads
td: a(href="https://gitlab.com/Crestwave") Crestwave
td 2018/09/15 10:55:27
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/259") 259
td Add option to collapse code blocks
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/09/16 19:48:04
td 2018/09/16 21:54:38
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/260") 260
td All comments become collapsed when a top-level ...
td: a(href="https://gitlab.com/talklittle") talklittle
td 2018/09/16 22:25:38
td 2018/09/21 00:46:02
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/261") 261
td Prevent the user from replying directly to thei...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/09/20 02:59:35
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/262") 262
td Replying and voting without JavaScript
td: a(href="https://gitlab.com/TrashMacNugget") TrashMacNugget
td 2018/09/23 03:22:28
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/263") 263
td Embed support for images and videos
td: a(href="https://gitlab.com/dcelasun") dcelasun
td 2018/09/25 21:54:55
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/264") 264
td Show if a user is banned on their profile
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/09/26 19:10:08
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/265") 265
td Suggestion: Community based thread locking
td: a(href="https://gitlab.com/ducksduck") ducksduck
td 2018/09/27 16:37:17
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/266") 266
td Show comment's "total score" or weighted value ...
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/09/27 22:29:44
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/267") 267
td label section does not wrap in Firefox Mobile
td: a(href="https://gitlab.com/firstakir") firstakir
td 2018/09/28 03:16:45
td 2018/09/29 01:58:01
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/268") 268
td Tags are not clickable on search results page o...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/28 04:27:31
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/269") 269
td Add pagination for previously read notifications
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/28 04:29:28
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/270") 270
td "Collapse old comments" isn't affecting deleted...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/09/28 08:50:49
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/271") 271
td @username mentions triggering in code blocks
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/09/29 01:25:43
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/272") 272
td Add some sort of "related links" feature to top...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/09/29 01:27:24
td
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/273") 273
td Bug in marking new comments?
td: a(href="https://gitlab.com/apoctr") apoctr
td 2018/09/30 12:38:39
td 2018/09/30 23:00:27
h3(id="closed") Closed
table
thead
tr
td Issue
td Title
td Author
td Opened
td Closed
tbody
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/78") 78
td Syntax highlighting in markdown code blocks
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/05/27 16:45:59
td 2018/09/21 21:29:37
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/114") 114
td Message inbox doesn't sort one-message conversa...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/07 19:51:26
td 2018/09/06 01:35:02
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/145") 145
td Topic tag filters are not filtering out "descen...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/06/25 22:13:02
td 2018/09/08 04:04:43
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/154") 154
td Add pagination to users viewing their own profile
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/07/12 16:44:20
td 2018/09/01 01:27:07
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/161") 161
td Include licensing and copyright info in source ...
td: a(href="https://gitlab.com/hook") hook
td 2018/07/18 12:22:35
td 2018/09/05 20:45:24
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/218") 218
td 2FA needs to display the authenticator key in a...
td: a(href="https://gitlab.com/Deimorz") Deimorz
td 2018/08/17 23:17:39
td 2018/09/05 20:44:26
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/245") 245
td Internal Server Error for only 2 text posts by ...
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/09/04 01:20:43
td 2018/09/04 01:31:23
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/246") 246
td period_string in topic_list.jinja2 doesn't appe...
td: a(href="https://gitlab.com/jms301") jms301
td 2018/09/04 12:36:20
td 2018/09/04 19:49:18
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/248") 248
td Jumping to comment via link with anchor doesn't...
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/09/04 21:50:48
td 2018/09/04 22:10:10
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/252") 252
td Expand comments when being linked to them
td: a(href="https://gitlab.com/Bauke") Bauke
td 2018/09/10 17:07:03
td 2018/09/10 18:33:34
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/253") 253
td Text Topic Word Count is broken
td: a(href="https://gitlab.com/AdamsT") AdamsT
td 2018/09/11 12:42:48
td 2018/09/11 20:49:36
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/254") 254
td Comment tag menu stays visible even after colla...
td: a(href="https://gitlab.com/cfabbro") cfabbro
td 2018/09/12 15:18:51
td 2018/09/17 20:47:01
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/259") 259
td Add option to collapse code blocks
td: a(href="https://gitlab.com/SoptikHa2") SoptikHa2
td 2018/09/16 19:48:04
td 2018/09/16 21:54:38
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/260") 260
td All comments become collapsed when a top-level ...
td: a(href="https://gitlab.com/talklittle") talklittle
td 2018/09/16 22:25:38
td 2018/09/21 00:46:02
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/267") 267
td label section does not wrap in Firefox Mobile
td: a(href="https://gitlab.com/firstakir") firstakir
td 2018/09/28 03:16:45
td 2018/09/29 01:58:01
tr
td: a(href="https://gitlab.com/tildes/tildes/issues/273") 273
td Bug in marking new comments?
td: a(href="https://gitlab.com/apoctr") apoctr
td 2018/09/30 12:38:39
td 2018/09/30 23:00:27
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

160
src/posts/template.html Normal file
View File

@ -0,0 +1,160 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Month Year</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/post.css">
<!-- NOTE: favicons are under "src/favicons" but in "public/" for build -->
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
<link rel="manifest" href="../site.webmanifest">
<link rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36">
<link rel="shortcut icon" href="../favicon.ico">
<meta name="msapplication-TileColor" content="#282a36">
<meta name="msapplication-config" content="../browserconfig.xml">
<meta name="theme-color" content="#282a36">
</head>
<body>
<div id="wrapper">
<h1>Month Year</h1>
<section id="post">
<article id="toc">
<h2>Table Of Contents</h2>
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#feedback">Feedback</a>
</li>
<li>
<a href="#highlights">Highlights</a>
<ul>
<li>
<a href="#section">Section</a>
</li>
<li>
<a href="#another-section">Another Section</a>
</li>
</ul>
</li>
<li>
<a href="#statistics">Statistics</a>
</li>
<li>
<a href="#notable-official-topics">Notable Official Topics</a>
</li>
<li>
<a href="#issue-table">Issue Table</a>
<ul>
<li>
<a href="#opened">Opened</a>
</li>
<li>
<a href="#closed">Closed</a>
</li>
</ul>
</li>
</ul>
</article>
<article id="about">
<h2>About</h2>
<p>The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made.
Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and
closed in that month, along with some interesting statistics so you can get a look into the development
process and a quick grasp of anything you may have missed.</p>
</article>
<article id="feedback">
<h2>Feedback</h2>
<p>If anything is incorrect or you have anything that you'd like to see changed or added please
<a href="https://gitlab.com/Bauke/tildes-issue-log/issues">open an issue</a>,
<a href="https://tildes.net/user/Bauke/new_message">PM me</a>
or comment on the posted topic on Tildes.</p>
<p>If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like
Tildes, this will remain entirely open-source.</p>
</article>
<article id="highlights">
<h2>Highlights</h2>
<h3 id="section">Section</h3>
<p>A user-written section of a highlight, along with the "read more..." link and a collapsible details box with
Author and Written Date.</p>
<p>Read more about it
<a href="https://tildes.net">here</a>.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-07-16</p>
</details>
<h3 id="another-section">Another Section</h3>
<p>Another user-written section of a highlight...</p>
<p>Read more about it
<a href="https://tildes.net">here</a>.</p>
<details>
<summary>Details</summary>
<p>Author:
<a href="https://tildes.net/user/Bauke">Bauke</a>
</p>
<p>Written Date: 2018-07-16</p>
</details>
</article>
<article id="statistics">
<h2>Statistics</h2>
</article>
<article id="notable-official-topics">
<h2>Notable Official Topics</h2>
<table>
<thead>
<tr>
<td>Date</td>
<td>Title</td>
<td>URL</td>
</tr>
</thead>
<tbody>
<tr>
<td>YYYY-MM-DD</td>
<td>Title of the discussion.</td>
<td>
<a href="https://tildes.net/~tildes.official">Click</a>
</td>
</tr>
</tbody>
</table>
</article>
<article id="issue-table">
<h2>Issue Table</h2>
</article>
</section>
<footer id="footer">
<h3>
<a href="../index.html">Home</a>
</h3>
<h3>
<a href="#">To Top</a>
</h3>
<h3>
<a href="https://tildes.net">Tildes</a>
</h3>
<h3>Built with
<a href="https://gulpjs.com">Gulp</a>
and
<a href="https://sass-lang.com/">Sass</a>
</h3>
<h3>Colors from
<a href="https://draculatheme.com">Dracula</a>
</h3>
<h3>View the
<a href="https://gitlab.com/Bauke/tildes-issue-log">source</a>
</h3>
</footer>
</div>
</body>
</html>

View File

@ -1,139 +0,0 @@
<!DOCTYPE html>
html(lang="en")
head
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title Month Year
link(rel="stylesheet", href="../css/common.css")
link(rel="stylesheet", href="../css/post.css")
//- NOTE: favicons are under "src/favicons" but in "public/" for build
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png")
link(rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png")
link(rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png")
link(rel="manifest" href="../site.webmanifest")
link(rel="mask-icon" href="../safari-pinned-tab.svg" color="#282a36")
link(rel="shortcut icon" href="../favicon.ico")
meta(name="msapplication-TileColor" content="#282a36")
meta(name="msapplication-config" content="../browserconfig.xml")
meta(name="theme-color" content="#282a36")
body
div(id="wrapper")
h1 Month Year
section(id="post")
article(id="toc")
h2 Table Of Contents
ul
li: a(href="#about") About
li: a(href="#feedback") Feedback
li
a(href="#highlights") Highlights
ul
li: a(href="#section") Section
li: a(href="#another-section") Another Section
li: a(href="#statistics") Statistics
li: a(href="#daily-discussions") Daily Discussions
li
a(href="#issue-table") Issue Table
ul
li: a(href="#opened") Opened
li: a(href="#closed") Closed
article(id="about")
h2 About
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
article(id="feedback")
h2 Feedback
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log/issues") open an issue
| ,
|
a(href="https://tildes.net/user/Bauke/new_message") PM me
|
| or comment on the posted topic on Tildes.
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
article(id="highlights")
h2 Highlights
//- User written highlights of what happened with development and any notable changes, if applicable.
h3(id="section") Section
p A user-written section of a highlight, along with the "read more..." link and a collapsible details box with Author and Written Date.
p Read more about it
|
|
a(href="https://tildes.net") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-16
h3(id="another-section") Another Section
p Another user-written section of a highlight...
p Read more about it
|
|
a(href="https://tildes.net") here
| .
details
summary Details
p Author:
|
|
a(href="https://tildes.net/user/Bauke") Bauke
p Written Date: 2018-07-16
article(id="statistics")
h2 Statistics
//- Any statistics that would be fun/interesting to read about, more info: issue #1
//- These are automatically generated, see the README.
article(id="daily-discussions")
h2 Daily Discussions
//- Table format should be like this:
table
thead
tr
td Date
td Title
td URL
tbody
tr
td YYYY-MM-DD
td Title of the discussion, excluding the "Daily Tildes Discussion" part.
td: a(href="https://tildes.net/~tildes.official") Click
article(id="issue-table")
h2 Issue Table
//- These are automatically generated, see the README.
footer(id="footer")
h3: a(href="../index.html") Home
h3: a(href="#") To Top
h3: a(href="https://tildes.net") Tildes
h3 Built with
|
|
a(href="https://pugjs.org") Pug
|
| and
|
a(href="https://sass-lang.com/") Sass
h3 Colors from
|
|
a(href="https://draculatheme.com") Dracula
h3 View the
|
|
a(href="https://gitlab.com/Bauke/tildes-issue-log") source

View File

@ -1,21 +0,0 @@
@import '_colors.sass'
a
color: $cyan
text-decoration: none
&:hover,
&:active,
&:focus
color: $pink
text-decoration: underline
&:visited
color: $cyan
text-decoration: none
&:hover,
&:active,
&:focus
color: $pink
text-decoration: underline

View File

@ -1,12 +0,0 @@
$foreground: #f8f8f2
$background: #282a36
$selection: #44475a
$comment: #6272a4
$red: #ff5555
$orange: #ffb86c
$yellow: #f1fa8c
$green: #50fa7b
$cyan: #8be9fd
$purple: #bd93f9
$pink: #ff79c6

View File

@ -1,16 +0,0 @@
@media screen and (max-width: 1350px)
#wrapper
width: 95vw
@media screen and (max-width: 500px)
#post > #toc
float: none
margin: 0
width: auto
background-color: rgba(0, 0, 0, 0.25)
td
overflow: scroll
white-space: nowrap
text-overflow: clip
max-width: 20px

View File

@ -1,54 +0,0 @@
@import '_anchor.sass'
@import '_colors.sass'
html, body, p, ul, ol, li,
h1, h2, h3, h4, h5
margin: 0
padding: 0
body
color: $foreground
background-color: $background
font-family: Arial, sans-serif
#wrapper
width: 75vw
margin: 0 auto
> h1
padding: 0.5em 0
border-bottom: 4px solid $yellow
#footer
padding: 1em
border-top: 4px solid $red
background-color: rgba(0, 0, 0, 0.5)
> h3
display: inline-block
margin: 0 10px 4px 10px
padding: 0 4px 4px 4px
border-bottom: 4px solid
&:nth-child(7n + 1)
border-bottom-color: $red
&:nth-child(7n + 2)
border-bottom-color: $orange
&:nth-child(7n + 3)
border-bottom-color: $yellow
&:nth-child(7n + 4)
border-bottom-color: $green
&:nth-child(7n + 5)
border-bottom-color: $cyan
&:nth-child(7n + 6)
border-bottom-color: $purple
&:nth-child(7n + 7)
border-bottom-color: $pink
@import '_responsive.sass'

View File

@ -1,37 +0,0 @@
@import '_anchor.sass'
@import '_colors.sass'
#posts
background-color: rgba(0, 0, 0, 0.25)
padding-bottom: 20px
> h1
padding: 20px 0 20px 20px
.post
border-left: 4px solid
&:nth-child(7n + 2)
border-left-color: $red
&:nth-child(7n + 3)
border-left-color: $orange
&:nth-child(7n + 4)
border-left-color: $yellow
&:nth-child(7n + 5)
border-left-color: $green
&:nth-child(7n + 6)
border-left-color: $cyan
&:nth-child(7n + 7)
border-left-color: $purple
&:nth-child(7n + 8)
border-left-color: $pink
> h2
padding-left: 20px
margin: 20px 0

View File

@ -1,126 +0,0 @@
@import '_anchor.sass'
@import '_colors.sass'
#post
> #toc
margin: 0 0 2em 2em
padding: 1em
width: fit-content
border: 4px solid $yellow
border-top: none
float: right
background-color: $background
> h2
padding: 0.2em 0
> ul
list-style-type: none
> li
margin: 0.2em 0
> a
font-size: 1.25em
&:before
content: '>'
padding-right: 0.5em
> ul
list-style-type: none
> li
margin: 0.2em 0
> a
font-size: 1.25em
&:before
content: '>>'
padding-right: 0.5em
padding-left: 0.5em
> *:not(#toc)
padding: 1em 1em
background-color: rgba(0, 0, 0, 0.25)
p, ol, ul
padding: 0.2em 0
details
display: inline-block
border-bottom: 4px solid $comment
summary
color: $comment
cursor: pointer
outline: none
h2
padding: 2px 0
margin: 0.2em 0
border-bottom: 4px solid $orange
width: 50%
h3
font-size: 1.3em
padding: 2px 0
margin: 1em 0 0.4em 0
border-bottom: 4px solid $red
width: 25%
p
font-size: 1.1em
text-align: justify
ol, ul
font-size: 1.1em
margin-bottom: 0.2em
> li
padding-bottom: 0.1em
ol
padding-left: 1.5em
ul
list-style-type: none
> li:before
content: '>'
padding-left: 0.5em
padding-right: 0.5em
table
width: 100%
font-size: 1.1em
margin: 0.4em 0
border-bottom: 2px solid $comment
border-spacing: 0
> thead
font-size: 1.3em
font-weight: bold
> tr > td
padding: 0.5em 0.8em
background-color: $selection
border-bottom: 2px solid $comment
> tbody
> tr
> td
padding: 0.5em 0.8em
border-left: 2px solid $comment
&:last-child
border-right: 2px solid $comment
&:nth-child(even) > td
background-color: $selection
&:nth-child(odd) > td
background-color: $background
@import '_responsive.sass'

25
src/scss/_anchor.scss Normal file
View File

@ -0,0 +1,25 @@
@import 'colors';
a {
color: $cyan;
text-decoration: none;
&:hover,
&:active,
&:focus {
color: $pink;
text-decoration: underline;
}
&:visited {
color: $cyan;
text-decoration: none;
&:hover,
&:active,
&:focus {
color: $pink;
text-decoration: underline;
}
}
}

12
src/scss/_colors.scss Normal file
View File

@ -0,0 +1,12 @@
$foreground: #f8f8f2;
$background: #282a36;
$selection: #44475a;
$comment: #6272a4;
$red: #ff5555;
$orange: #ffb86c;
$yellow: #f1fa8c;
$green: #50fa7b;
$cyan: #8be9fd;
$purple: #bd93f9;
$pink: #ff79c6;

21
src/scss/_responsive.scss Normal file
View File

@ -0,0 +1,21 @@
@media screen and (max-width: 1350px) {
#wrapper {
width: 95vw;
}
}
@media screen and (max-width: 500px) {
#post > #toc {
float: none;
margin: 0;
width: auto;
background-color: rgba(0, 0, 0, 0.25);
}
td {
overflow: scroll;
white-space: nowrap;
text-overflow: clip;
max-width: 20px;
}
}

67
src/scss/common.scss Normal file
View File

@ -0,0 +1,67 @@
@import 'anchor';
@import 'colors';
html, body, p, ul, ol, li,
h1, h2, h3, h4, h5 {
margin: 0;
padding: 0;
}
body {
color: $foreground;
background-color: $background;
font-family: Arial, sans-serif;
}
#wrapper {
width: 75vw;
margin: 0 auto;
> h1 {
padding: 0.5em 0;
border-bottom: 4px solid $yellow;
}
}
#footer {
padding: 1em;
border-top: 4px solid $red;
background-color: rgba(0, 0, 0, 0.5);
> h3 {
display: inline-block;
margin: 0 10px 4px 10px;
padding: 0 4px 4px 4px;
border-bottom: 4px solid;
&:nth-child(7n + 1) {
border-bottom-color: $red;
}
&:nth-child(7n + 2) {
border-bottom-color: $orange;
}
&:nth-child(7n + 3) {
border-bottom-color: $yellow;
}
&:nth-child(7n + 4) {
border-bottom-color: $green;
}
&:nth-child(7n + 5) {
border-bottom-color: $cyan;
}
&:nth-child(7n + 6) {
border-bottom-color: $purple;
}
&:nth-child(7n + 7) {
border-bottom-color: $pink;
}
}
}
@import 'responsive';

48
src/scss/index.scss Normal file
View File

@ -0,0 +1,48 @@
@import 'anchor';
@import 'colors';
#posts {
background-color: rgba(0, 0, 0, 0.25);
padding-bottom: 20px;
> h1 {
padding: 20px 0 20px 20px;
}
.post {
border-left: 4px solid;
&:nth-child(7n + 2) {
border-left-color: $red;
}
&:nth-child(7n + 3) {
border-left-color: $orange;
}
&:nth-child(7n + 4) {
border-left-color: $yellow;
}
&:nth-child(7n + 5) {
border-left-color: $green;
}
&:nth-child(7n + 6) {
border-left-color: $cyan;
}
&:nth-child(7n + 7) {
border-left-color: $purple;
}
&:nth-child(7n + 8) {
border-left-color: $pink;
}
> h2 {
padding-left: 20px;
margin: 20px 0;
}
}
}

158
src/scss/post.scss Normal file
View File

@ -0,0 +1,158 @@
@import 'anchor';
@import 'colors';
#post {
> #toc {
margin: 0 0 2em 2em;
padding: 1em;
width: fit-content;
border: 4px solid $yellow;
border-top: none;
float: right;
background-color: $background;
> h2 {
padding: 0.2em 0;
}
> ul {
list-style-type: none;
> li {
margin: 0.2em 0;
> a {
font-size: 1.25em;
}
&:before {
content: '>';
padding-right: 0.5em;
}
> ul {
list-style-type: none;
> li {
margin: 0.2em 0;
> a {
font-size: 1.25em;
}
&:before {
content: '>>';
padding-right: 0.5em;
padding-left: 0.5em;
}
}
}
}
}
}
> *:not(#toc) {
padding: 1em 1em;
background-color: rgba(0, 0, 0, 0.25);
p, ol, ul {
padding: 0.2em 0;
}
details {
display: inline-block;
border-bottom: 4px solid $comment;
}
summary {
color: $comment;
cursor: pointer;
outline: none;
}
h2 {
padding: 2px 0;
margin: 0.2em 0;
border-bottom: 4px solid $orange;
width: 50%;
}
h3 {
font-size: 1.3em;
padding: 2px 0;
margin: 1em 0 0.4em 0;
border-bottom: 4px solid $red;
width: 25%;
}
p {
font-size: 1.1em;
text-align: justify;
}
ol, ul {
font-size: 1.1em;
margin-bottom: 0.2em;
> li {
padding-bottom: 0.1em;
}
}
ol {
padding-left: 1.5em;
}
ul {
list-style-type: none;
> li:before {
content: '>';
padding-left: 0.5em;
padding-right: 0.5em;
}
}
table {
width: 100%;
font-size: 1.1em;
margin: 0.4em 0;
border-bottom: 2px solid $comment;
border-spacing: 0;
> thead {
font-size: 1.3em;
font-weight: bold;
> tr > td {
padding: 0.5em 0.8em;
background-color: $selection;
border-bottom: 2px solid $comment;
}
}
> tbody {
> tr {
> td {
padding: 0.5em 0.8em;
border-left: 2px solid $comment;
&:last-child {
border-right: 2px solid $comment;
}
}
&:nth-child(even) > td {
background-color: $selection;
}
&:nth-child(odd) > td {
background-color: $background;
}
}
}
}
}
}
@import 'responsive'

1555
yarn.lock

File diff suppressed because it is too large Load Diff